diff --git a/backend/CLAUDE.md b/backend/CLAUDE.md index 6c5873eb..1fa7ff7e 100644 --- a/backend/CLAUDE.md +++ b/backend/CLAUDE.md @@ -4,7 +4,7 @@ FastAPI orchestrator. Entry: `backend/main.py` (uvicorn `:8324`, REST `/api/*`, ## Coding precedences -Full precedences live in root [CLAUDE.md](../.claude/CLAUDE.md). Always: **understand the end goal before coding** (what does the user actually need?); **reuse before you write** (grep existing routes / SubApps / helpers, most needs already have one); ~300 LOC/file ceiling; downward-tree imports; comments only when necessary (the non-obvious WHY), one line each; **no em-dashes or en-dashes anywhere** (`—`, `–`); say IDK to the user when you don't know, then go find out; test after meaningful changes; weigh speed, efficiency, robustness, UX, and security on every change. +Full precedences live in root `CLAUDE.md`. Always: **understand the end goal before coding** (what does the user actually need?); **reuse before you write** (grep existing routes / SubApps / helpers, most needs already have one); ~300 LOC/file ceiling; downward-tree imports; comments only when necessary (the non-obvious WHY), one line each; **no em-dashes or en-dashes anywhere** (`—`, `–`); say IDK to the user when you don't know, then go find out; test after meaningful changes; weigh speed, efficiency, robustness, UX, and security on every change. ## Run / test diff --git a/backend/ENV_README.md b/backend/ENV_README.md index ec04f287..10db3493 100644 --- a/backend/ENV_README.md +++ b/backend/ENV_README.md @@ -120,7 +120,7 @@ Apple doesn't let you use your regular password for automated tools. You need to ### Step 1 — Turn on two-factor authentication (if you haven't already) -1. On your Mac, go to **System Settings** > **[your name]** > **Sign-In & Security** > **Two-Factor Authentication**. +1. On your Mac, go to **System Settings** > **\[your name\]** > **Sign-In & Security** > **Two-Factor Authentication**. 2. Turn it on and follow the prompts. ### Step 2 — Generate the app-specific password diff --git a/backend/apps/dashboards/__init__.py b/backend/apps/dashboards/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/backend/apps/health/__init__.py b/backend/apps/health/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/backend/apps/nine_router/__init__.py b/backend/apps/nine_router/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/backend/apps/settings/__init__.py b/backend/apps/settings/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/docs/.gitignore b/docs/.gitignore index b59504cf..c03c9599 100644 --- a/docs/.gitignore +++ b/docs/.gitignore @@ -2,8 +2,15 @@ .venv/ site/ +# Manifest of files written by gen_pages.py (used for precise cleanup). +.gen_manifest + # Doc pages generated from the codebase by gen_pages.py (real files on disk now, # since Zensical builds from disk rather than a plugin's virtual filesystem). -content/reference/ -content/guides/ -content/frontend/ +# Sections are dynamic (one per top-level repo folder), so ignore everything +# under content/ except the hand-written page and static assets. +content/* +!content/index.md +!content/assets/ +!content/stylesheets/ +!content/javascripts/ diff --git a/docs/README.md b/docs/README.md index 3caba189..27111ca0 100644 --- a/docs/README.md +++ b/docs/README.md @@ -19,22 +19,29 @@ there. Output lands in `docs/site/` (git-ignored). ## What it pulls in +The site **mirrors the repo**: every top-level folder becomes a sidebar section, +populated by whatever docs live under it. + | Source | Becomes (`content/…`) | | --- | --- | -| `backend/**/*.py` docstrings | `reference/` — one [mkdocstrings](https://mkdocstrings.github.io/) page per module. | +| Any `**/*.py` in a real Python package (e.g. `backend/`) | `/…` — one [mkdocstrings](https://mkdocstrings.github.io/) page per module, in that folder's section. | +| Every `README.md` / loose `*.md` under a folder | `/…` — copied verbatim into that folder's section. | +| Root-level Markdown (`README.md`, `GETTING_STARTED.md`, …) | `general/` — grouped under a synthetic "General" section. | | `frontend/src` (TSDoc) | `frontend/` — [TypeDoc](https://typedoc.org/) reference (best-effort; needs Node + one-time network). | -| Every `README.md`, `implementation_plan.md`, `relevant_context.md`, `frontend/DESIGN.md` | `guides/` — copied verbatim. | -Add a module or a README anywhere and it appears on the next run — Zensical -**infers the navigation from the directory tree**, so there's no nav to maintain. +Add a module, a README, or a whole new top-level folder and it appears on the +next run — Zensical **infers the navigation from the directory tree**, so there's +no nav to maintain. API pages are only generated where a real package exists (a +complete `__init__.py` chain); non-package folders contribute their Markdown only. ## How it differs from a plain Zensical site Zensical doesn't run MkDocs plugins (no `mkdocs-gen-files` / `mkdocs-literate-nav`). So instead of generating pages inside the build, `gen_pages.py` runs **before** the -build as a plain script and writes **real Markdown files** into `content/reference/`, -`content/guides/`, and `content/frontend/`. Those three directories are wiped and rebuilt -each run and are git-ignored; only `content/index.md` is hand-written. +build as a plain script and writes **real Markdown files** into per-folder sections +under `content/`. Generated files are tracked in `docs/.gen_manifest` and removed +precisely on the next run; the hand-written `content/index.md` and the static +`assets/`, `stylesheets/`, and `javascripts/` folders are left untouched. ## Files diff --git a/docs/content/index.md b/docs/content/index.md index 62c82bdb..2655f57a 100644 --- a/docs/content/index.md +++ b/docs/content/index.md @@ -1,4 +1,4 @@ -# Product Analytics — Documentation +# Open Swarm — Developer Documentation This site is **auto-generated from the codebase** and built with [Zensical](https://zensical.org/). Nothing here is written by hand except this diff --git a/docs/gen_pages.py b/docs/gen_pages.py index f88d7f41..31eec942 100644 --- a/docs/gen_pages.py +++ b/docs/gen_pages.py @@ -3,140 +3,350 @@ Zensical doesn't run MkDocs plugins (no ``mkdocs-gen-files`` / ``literate-nav``), so instead of synthesizing virtual pages we write **real** Markdown files into ``content/`` before ``zensical build`` runs. Zensical then infers the navigation -from the directory structure, so the site still mirrors the codebase on every run. +from the directory structure, so the sidebar mirrors the repo on every run. Pure standard library — run it with any Python ≥3.9: python docs/gen_pages.py -Sources: - 1. ``backend/**/*.py`` -> ``content/reference/...`` (``::: module`` for mkdocstrings) - 2. repo Markdown -> ``content/guides/...`` (READMEs + loose docs, verbatim) - 3. ``frontend/.typedoc`` -> ``content/frontend/...`` (TypeDoc output, if present) +The site structure mirrors the repository: **every top-level folder becomes a +sidebar section**, populated by whatever docs live under it. Root-level Markdown +(``README.md`` and friends) is grouped under a synthetic ``General`` section. -The three generated directories are wiped and rebuilt each run; ``content/index.md`` -(the hand-written landing page) is left untouched. +Sources are declared once in ``RULES`` (see below); the same engine discovers, +filters, and writes each of them: + + 1. ``**/*.py`` in real packages -> ``content//...`` (``::: module`` for mkdocstrings) + 2. repo Markdown -> ``content//...`` (root-level .md -> ``content/general/``) + 3. ``frontend/.typedoc`` -> ``content/frontend/...`` (TypeDoc output, if present) + +Discovery uses ``git ls-files`` so the generator inherits ``.gitignore`` for free +— virtualenvs (``backend/tests/.runner-venv``), caches, and build output never +leak in, and there's no denylist to keep patched. The set of generated files is +recorded in ``docs/.gen_manifest`` and removed on the next run, so cleanup is +precise. Hand-written content (``content/index.md`` and the ``assets`` / +``stylesheets`` / ``javascripts`` folders) is never touched. """ from __future__ import annotations +import logging import shutil +import subprocess +from collections.abc import Callable, Iterable +from dataclasses import dataclass from pathlib import Path HERE = Path(__file__).resolve().parent REPO_ROOT = HERE.parent -DOCS_DIR = HERE / "content" +CONTENT = HERE / "content" -REFERENCE_DIR = DOCS_DIR / "reference" -GUIDES_DIR = DOCS_DIR / "guides" -FRONTEND_DIR = DOCS_DIR / "frontend" +# Root-level Markdown is grouped here; TypeDoc output lands under the frontend +# folder section like any other source under ``frontend/``. +GENERAL_DIR = CONTENT / "general" +FRONTEND_DIR = CONTENT / "frontend" -# Directory names we never walk into when collecting Markdown. -SKIP_DIRS = { +# Record of everything we wrote last run, so we can clean precisely. Lives +# outside ``content/`` (the Zensical docs_dir) so it's never served, and is +# git-ignored via docs/.gitignore. +MANIFEST = HERE / ".gen_manifest" + +# Hand-written / static content under ``content/`` that we must never delete. +PRESERVE = {"index.md", "assets", "stylesheets", "javascripts"} + +# Top-level repo folders to never turn into sections. ``docs`` is this tool and +# its own generated output — ingesting it would be circular. +EXCLUDE_TOP_DIRS = {"docs"} + +# Module path segments that never belong in the public API reference. +EXCLUDE_SEGMENTS = {"tests", "migrations", "webapp_template"} + +# Only used by the rglob fallback when ``git ls-files`` is unavailable (e.g. a +# source tarball). Git's own ignore rules cover this and more in the normal path. +_FALLBACK_SKIP = { ".git", ".venv", "venv", "node_modules", "__pycache__", "site", ".pytest_cache", ".mypy_cache", "dist", "build", ".typedoc", + ".runner-venv", ".ruff_cache", } +log = logging.getLogger("gen_pages") -def _skipped(path: Path) -> bool: - return any(part in SKIP_DIRS for part in path.parts) + +# --- File discovery ------------------------------------------------------- + +def tracked_files(root: Path, patterns: list[str]) -> list[Path]: + """Return repository files matching ``patterns`` (git pathspecs). + + Uses ``git ls-files`` so ignored paths (venvs, caches, build output) are + excluded for free. Falls back to a filtered ``rglob`` — with a loud warning + — when ``root`` isn't a git checkout, since that path can surface files git + would have hidden. + """ + try: + result = subprocess.run( + ["git", "ls-files", "-z", "--", *patterns], + cwd=root, + capture_output=True, + text=True, + check=True, + ) + except (FileNotFoundError, subprocess.CalledProcessError) as exc: + log.warning( + "git ls-files unavailable (%s); falling back to rglob — output may " + "include files git would ignore", exc, + ) + return _rglob_fallback(root, patterns) + return [root / line for line in result.stdout.split("\0") if line] + + +def _rglob_fallback(root: Path, patterns: list[str]) -> list[Path]: + results: list[Path] = [] + for pattern in patterns: + base, _, glob = pattern.rpartition("/") + start = root / base if base else root + suffix = glob.replace("*", "") + if not start.is_dir(): + continue + for path in start.rglob(f"*{suffix}"): + if path.is_file() and not _is_skipped(path.relative_to(root)): + results.append(path) + return results + + +def _is_skipped(rel: Path) -> bool: + return any(part in _FALLBACK_SKIP for part in rel.parts) + + +# --- Filters / path mapping ----------------------------------------------- + +def is_documentable_top_dir(rel: Path) -> bool: + """Whether ``rel`` lives under a top-level folder we turn into a section.""" + return bool(rel.parts) and rel.parts[0] not in EXCLUDE_TOP_DIRS + + +def is_reference_module(rel: Path) -> bool: + """Whether a ``*.py`` file should become an API reference page. + + Excludes tests, migrations, and the app-builder scaffolding template, and + requires every path segment to be a valid (non-private) module name — which + also rejects junk like ``.runner-venv`` dotted paths in the fallback case. + Importability (a complete ``__init__.py`` chain) is checked separately. + """ + parts = rel.with_suffix("").parts + if not is_documentable_top_dir(rel): + return False + if any(seg in EXCLUDE_SEGMENTS for seg in parts): + return False + for seg in parts: + if seg == "__init__": + continue + if not seg.isidentifier(): + return False + if seg.startswith("_") and not seg.startswith("__"): + return False + return True + + +def is_importable(py: Path) -> bool: + """Whether ``py``'s package chain is complete enough for Griffe to collect it. + + mkdocstrings resolves a dotted identifier (``backend.apps.settings.settings``) + by walking real packages, so every ancestor directory must contain an + ``__init__.py``. Emitting a page for a module under an ``__init__``-less dir + (a namespace package) makes ``zensical build`` fail hard with + ``Could not collect ''``, so we skip those instead. + """ + dir_parts = py.relative_to(REPO_ROOT).parts[:-1] + return all( + (REPO_ROOT.joinpath(*dir_parts[:i]) / "__init__.py").exists() + for i in range(1, len(dir_parts) + 1) + ) + + +def _is_package_dir(rel: Path) -> bool: + """Whether ``rel``'s top-level folder is itself an importable package.""" + return bool(rel.parts) and (REPO_ROOT / rel.parts[0] / "__init__.py").exists() + + +def _module_parts(py: Path) -> list[str]: + parts = list(py.relative_to(REPO_ROOT).with_suffix("").parts) + if parts and parts[-1] == "__init__": + parts = parts[:-1] + return parts + + +# --- Source rules --------------------------------------------------------- + +@dataclass(frozen=True) +class SourceRule: + """One declarative source: discover files, map each to a dest, render text.""" + + name: str + discover: Callable[[], Iterable[Path]] + dest: Callable[[Path], Path] + render: Callable[[Path], str] + + +def _discover_reference() -> Iterable[Path]: + skipped = 0 + for py in tracked_files(REPO_ROOT, ["*.py"]): + rel = py.relative_to(REPO_ROOT) + if py.suffix != ".py" or not is_reference_module(rel): + continue + if not is_importable(py): + # Only flag the gap for folders that are otherwise API packages + # (a real misconfig, like a missing __init__.py in backend/). Plain + # tooling dirs that aren't packages at all are skipped silently. + if _is_package_dir(rel): + skipped += 1 + log.warning( + "skipping %s: no __init__.py in its package chain " + "(mkdocstrings can't collect it)", rel, + ) + continue + yield py + if skipped: + log.warning("skipped %d reference module(s) missing an __init__.py", skipped) + + +def _dest_reference(py: Path) -> Path: + # Mirror the repo path under content/, so the top-level package becomes its + # own sidebar section (e.g. backend/apps/foo.py -> content/backend/apps/foo.md). + parts = _module_parts(py) + if py.name == "__init__.py": + # Package → section/sub-section landing page (works with navigation.indexes). + return CONTENT.joinpath(*parts, "index.md") + return CONTENT.joinpath(*parts).with_suffix(".md") + + +def _render_reference(py: Path) -> str: + # No hand-written H1: mkdocstrings renders the heading, and the nav label is + # derived from the file/dir name (clean, short labels). + return f"::: {'.'.join(_module_parts(py))}\n" + + +def _discover_guides() -> Iterable[Path]: + for md in tracked_files(REPO_ROOT, ["*.md"]): + if md.suffix != ".md": + continue + rel = md.relative_to(REPO_ROOT) + # Nested under an excluded top dir (our own docs/ tree) → skip. Root-level + # Markdown has its filename as parts[0], so it's never excluded here. + if rel.parts[0] in EXCLUDE_TOP_DIRS: + continue + # Skip app-builder scaffolding — its docs describe generated apps, not + # this project. (Test/migration READMEs are still legitimate guides.) + if "webapp_template" in rel.parts: + continue + yield md + + +def _dest_guides(md: Path) -> Path: + rel = md.relative_to(REPO_ROOT) + if len(rel.parts) == 1: + # Root-level Markdown is grouped under the synthetic "General" section. + if rel.name == "README.md": + return GENERAL_DIR / "index.md" + return GENERAL_DIR / rel.name + # Otherwise mirror the repo path so each doc lands in its folder's section. + return CONTENT / rel + + +def _discover_frontend() -> Iterable[Path]: + typedoc = REPO_ROOT / "frontend" / ".typedoc" + if not typedoc.is_dir(): + return + # TypeDoc output is untracked (regenerated by run.sh), so git can't see it; + # walk it directly. + for md in sorted(typedoc.rglob("*.md")): + yield md + + +def _dest_frontend(md: Path) -> Path: + typedoc = REPO_ROOT / "frontend" / ".typedoc" + return FRONTEND_DIR / md.relative_to(typedoc) + + +def _read_text(path: Path) -> str: + return path.read_text(encoding="utf-8") + + +RULES: list[SourceRule] = [ + SourceRule("reference", _discover_reference, _dest_reference, _render_reference), + SourceRule("guides", _discover_guides, _dest_guides, _read_text), + SourceRule("frontend", _discover_frontend, _dest_frontend, _read_text), +] + + +# --- Engine --------------------------------------------------------------- + +def _clean_previous() -> None: + """Remove the files generated last run, per the manifest. + + Falls back to removing every generated section under ``content/`` (anything + that isn't hand-written/static) when no manifest exists yet — e.g. the first + run after adopting the manifest, or a manually deleted manifest. + """ + if MANIFEST.exists(): + for line in MANIFEST.read_text(encoding="utf-8").splitlines(): + line = line.strip() + if not line: + continue + path = HERE / line + if path.is_file(): + path.unlink() + MANIFEST.unlink() + elif CONTENT.is_dir(): + for child in CONTENT.iterdir(): + if child.name in PRESERVE: + continue + if child.is_dir(): + shutil.rmtree(child) + elif child.is_file(): + child.unlink() + _prune_empty_dirs(CONTENT) + + +def _prune_empty_dirs(root: Path) -> None: + if not root.is_dir(): + return + # Deepest-first so a dir emptied by pruning its children is itself removed. + for sub in sorted(root.rglob("*"), key=lambda p: len(p.parts), reverse=True): + if sub.is_dir() and not any(sub.iterdir()): + sub.rmdir() def _write(dest: Path, text: str) -> None: dest.parent.mkdir(parents=True, exist_ok=True) + # Skip the rewrite when content is unchanged so ``zensical serve`` doesn't + # see a spurious modification (faster, quieter live reloads). + if dest.is_file() and dest.read_text(encoding="utf-8") == text: + return dest.write_text(text, encoding="utf-8") -def clean() -> None: - for d in (REFERENCE_DIR, GUIDES_DIR, FRONTEND_DIR): - if d.exists(): - shutil.rmtree(d) - - -# --- 1. Backend Python API -> mkdocstrings pages -------------------------- - -def gen_backend_reference() -> int: - backend = REPO_ROOT / "backend" - if not backend.is_dir(): - return 0 +def _run_rule(rule: SourceRule, written: set[Path]) -> int: count = 0 - for py in sorted(backend.rglob("*.py")): - if _skipped(py): - continue - parts = list(py.relative_to(REPO_ROOT).with_suffix("").parts) # backend, apps, ... - is_package = parts[-1] == "__init__" - if is_package: - parts = parts[:-1] - module = ".".join(parts) # e.g. backend.apps.export.snapshot - rel = parts[1:] # drop the leading "backend" for a flatter nav - - if is_package: - # Package → section landing page (works with navigation.indexes). - dest = REFERENCE_DIR.joinpath(*rel, "index.md") if rel else REFERENCE_DIR / "index.md" - else: - dest = REFERENCE_DIR.joinpath(*rel).with_suffix(".md") - - # No hand-written H1: mkdocstrings renders the heading, and the nav label - # is derived from the file/dir name (clean, short labels). - _write(dest, f"::: {module}\n") - count += 1 - return count - - -# --- 2. Repo Markdown (READMEs + loose docs) ------------------------------ - -def gen_guides() -> int: - curated = [ - REPO_ROOT / "README.md", - REPO_ROOT / "implementation_plan.md", - REPO_ROOT / "relevant_context.md", - REPO_ROOT / "frontend" / "DESIGN.md", - ] - nested_readmes = sorted(REPO_ROOT.rglob("README.md")) - - seen: set[Path] = set() - count = 0 - for md in [*curated, *nested_readmes]: - if not md.is_file() or md in seen or _skipped(md): - continue - if DOCS_DIR in md.parents: # never re-ingest our own generated tree - continue - seen.add(md) - - rel = md.relative_to(REPO_ROOT) - # Map the project root README to the Guides landing page. - if rel == Path("README.md"): - dest = GUIDES_DIR / "index.md" - else: - dest = GUIDES_DIR / rel - _write(dest, md.read_text(encoding="utf-8")) - count += 1 - return count - - -# --- 3. Frontend TypeDoc output ------------------------------------------- - -def gen_frontend() -> int: - typedoc = REPO_ROOT / "frontend" / ".typedoc" - if not typedoc.is_dir(): - return 0 - count = 0 - for md in sorted(typedoc.rglob("*.md")): - rel = md.relative_to(typedoc) - if any(p in SKIP_DIRS for p in rel.parts): - continue - _write(FRONTEND_DIR / rel, md.read_text(encoding="utf-8")) + for src in rule.discover(): + dest = rule.dest(src) + _write(dest, rule.render(src)) + written.add(dest) count += 1 return count def main() -> int: - clean() - n_api = gen_backend_reference() - n_guides = gen_guides() - n_front = gen_frontend() - print(f"gen_pages: {n_api} API pages, {n_guides} guides, {n_front} frontend pages " - f"written under {DOCS_DIR}") + logging.basicConfig(level=logging.INFO, format="%(name)s: %(message)s") + _clean_previous() + + written: set[Path] = set() + counts = {rule.name: _run_rule(rule, written) for rule in RULES} + + manifest_lines = sorted(str(p.relative_to(HERE)) for p in written) + MANIFEST.write_text("\n".join(manifest_lines) + "\n", encoding="utf-8") + + summary = ", ".join(f"{n} {name}" for name, n in counts.items()) + log.info("wrote %s pages under %s", summary, CONTENT) return 0 diff --git a/docs/zensical.toml b/docs/zensical.toml index 8728ea0c..e83b316a 100644 --- a/docs/zensical.toml +++ b/docs/zensical.toml @@ -4,13 +4,15 @@ # # Navigation is INFERRED from the directory tree under content/ (Zensical doesn't # run the mkdocs-literate-nav plugin). gen_pages.py writes that tree on each run, -# so the nav mirrors the codebase automatically — top-level dirs become sections: -# content/reference/ -> "reference" (backend API, from docstrings via mkdocstrings) -# content/guides/ -> "guides" (every README + loose Markdown doc) -# content/frontend/ -> "frontend" (TypeDoc reference, when present) +# so the nav mirrors the codebase automatically — every top-level repo folder +# becomes a sidebar section: +# content// -> "" (its Markdown + mkdocstrings API pages for +# any real Python package, e.g. backend/, frontend/, linter/) +# content/general/ -> "general" (root-level Markdown: README, GETTING_STARTED, ...) +# content/frontend/ -> also receives the TypeDoc reference, when present [project] -site_name = "Open Swarm Analytics — Docs" +site_name = "Open Swarm — Developer Documentation" site_description = "Auto-generated docs sourced from docstrings, READMEs, and the frontend." docs_dir = "content" site_dir = "site" diff --git a/electron/CLAUDE.md b/electron/CLAUDE.md index 9646224b..80128ef9 100644 --- a/electron/CLAUDE.md +++ b/electron/CLAUDE.md @@ -4,7 +4,7 @@ Electron 40.x (CastLabs DRM build) desktop shell + auto-updater via GitHub Relea ## Coding precedences -Full precedences live in root [CLAUDE.md](../.claude/CLAUDE.md). Always: **understand the end goal before coding** (what does the user actually need?); **reuse before you write** (grep existing IPC handlers / helpers in `main.js`, most needs already have one); ~300 LOC/file ceiling; downward-tree imports; comments only when necessary (the non-obvious WHY), one line each; **no em-dashes or en-dashes anywhere** (`—`, `–`); say IDK to the user when you don't know, then go find out; test the packaged build path after meaningful changes (not just dev); weigh speed (startup time), efficiency (memory), robustness (auto-updater, OAuth windows), UX, and security (signed binaries, no plaintext secrets) on every change. +Full precedences live in root `CLAUDE.md`. Always: **understand the end goal before coding** (what does the user actually need?); **reuse before you write** (grep existing IPC handlers / helpers in `main.js`, most needs already have one); ~300 LOC/file ceiling; downward-tree imports; comments only when necessary (the non-obvious WHY), one line each; **no em-dashes or en-dashes anywhere** (`—`, `–`); say IDK to the user when you don't know, then go find out; test the packaged build path after meaningful changes (not just dev); weigh speed (startup time), efficiency (memory), robustness (auto-updater, OAuth windows), UX, and security (signed binaries, no plaintext secrets) on every change. ## Build / release diff --git a/frontend/.typedoc/README.md b/frontend/.typedoc/README.md new file mode 100644 index 00000000..c1994b8b --- /dev/null +++ b/frontend/.typedoc/README.md @@ -0,0 +1,274 @@ +**open-swarm** + +*** + +# open-swarm + +## Modules + +- [app/components/editor/CommandPicker](app/components/editor/CommandPicker/README.md) +- [app/components/editor/DirectoryBrowser](app/components/editor/DirectoryBrowser/README.md) +- [app/components/editor/ElementSelectionContext](app/components/editor/ElementSelectionContext/README.md) +- [app/components/editor/richEditorUtils](app/components/editor/richEditorUtils/README.md) +- [app/components/editor/RichPromptEditor](app/components/editor/RichPromptEditor/README.md) +- [app/components/editor/SelectionOverlay](app/components/editor/SelectionOverlay/README.md) +- [app/components/editor/useDomElementSelector](app/components/editor/useDomElementSelector/README.md) +- [app/components/feedback/Animated](app/components/feedback/Animated/README.md) +- [app/components/feedback/ErrorBoundary](app/components/feedback/ErrorBoundary/README.md) +- [app/components/feedback/ErrorSlime](app/components/feedback/ErrorSlime/README.md) +- [app/components/feedback/Loading](app/components/feedback/Loading/README.md) +- [app/components/feedback/PixelBlast](app/components/feedback/PixelBlast/README.md) +- [app/components/Layout/animatedIcons](app/components/Layout/animatedIcons/README.md) +- [app/components/Layout/AppShell](app/components/Layout/AppShell/README.md) +- [app/components/Layout/DashboardHost](app/components/Layout/DashboardHost/README.md) +- [app/components/Onboarding](app/components/Onboarding/README.md) +- [app/components/Onboarding/\_motionWin](app/components/Onboarding/_motionWin/README.md) +- [app/components/Onboarding/ac/ACGestures](app/components/Onboarding/ac/ACGestures/README.md) +- [app/components/Onboarding/ac/ACMultiChoice](app/components/Onboarding/ac/ACMultiChoice/README.md) +- [app/components/Onboarding/ac/ACPopup](app/components/Onboarding/ac/ACPopup/README.md) +- [app/components/Onboarding/ac/acRuntime](app/components/Onboarding/ac/acRuntime/README.md) +- [app/components/Onboarding/ac/ACTypewriter](app/components/Onboarding/ac/ACTypewriter/README.md) +- [app/components/Onboarding/ac/AgenticCursor](app/components/Onboarding/ac/AgenticCursor/README.md) +- [app/components/Onboarding/ac/cursorStore](app/components/Onboarding/ac/cursorStore/README.md) +- [app/components/Onboarding/eventBus](app/components/Onboarding/eventBus/README.md) +- [app/components/Onboarding/hooks/useOnboardingProgress](app/components/Onboarding/hooks/useOnboardingProgress/README.md) +- [app/components/Onboarding/OnboardingDirector](app/components/Onboarding/OnboardingDirector/README.md) +- [app/components/Onboarding/OnboardingPanel](app/components/Onboarding/OnboardingPanel/README.md) +- [app/components/Onboarding/OnboardingRoadmapModal](app/components/Onboarding/OnboardingRoadmapModal/README.md) +- [app/components/Onboarding/OnboardingRoot](app/components/Onboarding/OnboardingRoot/README.md) +- [app/components/Onboarding/selectors](app/components/Onboarding/selectors/README.md) +- [app/components/Onboarding/steps](app/components/Onboarding/steps/README.md) +- [app/components/Onboarding/steps/skipPredicates](app/components/Onboarding/steps/skipPredicates/README.md) +- [app/components/Onboarding/steps/step01\_connectModel](app/components/Onboarding/steps/step01_connectModel/README.md) +- [app/components/Onboarding/steps/step02\_enableActions](app/components/Onboarding/steps/step02_enableActions/README.md) +- [app/components/Onboarding/steps/step03\_launchAgent](app/components/Onboarding/steps/step03_launchAgent/README.md) +- [app/components/Onboarding/steps/step04\_useBrowser](app/components/Onboarding/steps/step04_useBrowser/README.md) +- [app/components/Onboarding/steps/step05\_agentUseBrowser](app/components/Onboarding/steps/step05_agentUseBrowser/README.md) +- [app/components/Onboarding/steps/step06\_agentControlAgents](app/components/Onboarding/steps/step06_agentControlAgents/README.md) +- [app/components/Onboarding/steps/step07\_installSkill](app/components/Onboarding/steps/step07_installSkill/README.md) +- [app/components/Onboarding/steps/step08\_makeApp](app/components/Onboarding/steps/step08_makeApp/README.md) +- [app/components/Onboarding/steps/stepUnlock](app/components/Onboarding/steps/stepUnlock/README.md) +- [app/components/Onboarding/steps/types](app/components/Onboarding/steps/types/README.md) +- [app/components/Onboarding/telemetry](app/components/Onboarding/telemetry/README.md) +- [app/components/overlays/DynamicIsland](app/components/overlays/DynamicIsland/README.md) +- [app/components/overlays/GlobalSearchPalette](app/components/overlays/GlobalSearchPalette/README.md) +- [app/components/overlays/PlanPicker](app/components/overlays/PlanPicker/README.md) +- [app/components/overlays/PlanPickerModal](app/components/overlays/PlanPickerModal/README.md) +- [app/components/overlays/SignInDialog](app/components/overlays/SignInDialog/README.md) +- [app/components/overlays/TrustedFilePatterns](app/components/overlays/TrustedFilePatterns/README.md) +- [app/Main](app/Main/README.md) +- [app/pages/AgentChat/AgentChat](app/pages/AgentChat/AgentChat/README.md) +- [app/pages/AgentChat/bubbles/CompactionMarker](app/pages/AgentChat/bubbles/CompactionMarker/README.md) +- [app/pages/AgentChat/bubbles/markdownMeasure](app/pages/AgentChat/bubbles/markdownMeasure/README.md) +- [app/pages/AgentChat/bubbles/MessageBubble](app/pages/AgentChat/bubbles/MessageBubble/README.md) +- [app/pages/AgentChat/bubbles/StreamingBubble](app/pages/AgentChat/bubbles/StreamingBubble/README.md) +- [app/pages/AgentChat/bubbles/useSmoothText](app/pages/AgentChat/bubbles/useSmoothText/README.md) +- [app/pages/AgentChat/bubbles/WindowedMarkdown](app/pages/AgentChat/bubbles/WindowedMarkdown/README.md) +- [app/pages/AgentChat/ChatInput](app/pages/AgentChat/ChatInput/README.md) +- [app/pages/AgentChat/ChatInput/helpers](app/pages/AgentChat/ChatInput/helpers/README.md) +- [app/pages/AgentChat/ChatInput/hooks/draftStore](app/pages/AgentChat/ChatInput/hooks/draftStore/README.md) +- [app/pages/AgentChat/ChatInput/hooks/pasteCards](app/pages/AgentChat/ChatInput/hooks/pasteCards/README.md) +- [app/pages/AgentChat/ChatInput/hooks/slashCommands](app/pages/AgentChat/ChatInput/hooks/slashCommands/README.md) +- [app/pages/AgentChat/ChatInput/hooks/useChatInputModel](app/pages/AgentChat/ChatInput/hooks/useChatInputModel/README.md) +- [app/pages/AgentChat/ChatInput/hooks/useContextFiles](app/pages/AgentChat/ChatInput/hooks/useContextFiles/README.md) +- [app/pages/AgentChat/ChatInput/hooks/useEditorHandlers](app/pages/AgentChat/ChatInput/hooks/useEditorHandlers/README.md) +- [app/pages/AgentChat/ChatInput/hooks/useImageAttachments](app/pages/AgentChat/ChatInput/hooks/useImageAttachments/README.md) +- [app/pages/AgentChat/ChatInput/hooks/useModelPicker](app/pages/AgentChat/ChatInput/hooks/useModelPicker/README.md) +- [app/pages/AgentChat/ChatInput/modeConfig](app/pages/AgentChat/ChatInput/modeConfig/README.md) +- [app/pages/AgentChat/ChatInput/model-picker/modelPicker](app/pages/AgentChat/ChatInput/model-picker/modelPicker/README.md) +- [app/pages/AgentChat/ChatInput/model-picker/ModelPickerFooter](app/pages/AgentChat/ChatInput/model-picker/ModelPickerFooter/README.md) +- [app/pages/AgentChat/ChatInput/model-picker/ModelPickerHeader](app/pages/AgentChat/ChatInput/model-picker/ModelPickerHeader/README.md) +- [app/pages/AgentChat/ChatInput/model-picker/ModelPickerList](app/pages/AgentChat/ChatInput/model-picker/ModelPickerList/README.md) +- [app/pages/AgentChat/ChatInput/model-picker/ModelPickerMenu](app/pages/AgentChat/ChatInput/model-picker/ModelPickerMenu/README.md) +- [app/pages/AgentChat/ChatInput/model-picker/ModelPickerRecents](app/pages/AgentChat/ChatInput/model-picker/ModelPickerRecents/README.md) +- [app/pages/AgentChat/ChatInput/model-picker/modelTooltip](app/pages/AgentChat/ChatInput/model-picker/modelTooltip/README.md) +- [app/pages/AgentChat/ChatInput/sendHelpers](app/pages/AgentChat/ChatInput/sendHelpers/README.md) +- [app/pages/AgentChat/ChatInput/toolbar/ChatInputToolbar](app/pages/AgentChat/ChatInput/toolbar/ChatInputToolbar/README.md) +- [app/pages/AgentChat/ChatInput/toolbar/ContextRing](app/pages/AgentChat/ChatInput/toolbar/ContextRing/README.md) +- [app/pages/AgentChat/ChatInput/toolbar/ModeControl](app/pages/AgentChat/ChatInput/toolbar/ModeControl/README.md) +- [app/pages/AgentChat/ChatInput/toolbar/ThinkingLevelControl](app/pages/AgentChat/ChatInput/toolbar/ThinkingLevelControl/README.md) +- [app/pages/AgentChat/ChatInput/toolbar/ToolbarActions](app/pages/AgentChat/ChatInput/toolbar/ToolbarActions/README.md) +- [app/pages/AgentChat/ChatInput/types](app/pages/AgentChat/ChatInput/types/README.md) +- [app/pages/AgentChat/ChatInput/view/AttachmentChips](app/pages/AgentChat/ChatInput/view/AttachmentChips/README.md) +- [app/pages/AgentChat/ChatInput/view/ChatInputOverlays](app/pages/AgentChat/ChatInput/view/ChatInputOverlays/README.md) +- [app/pages/AgentChat/ChatInput/view/ChatInputView](app/pages/AgentChat/ChatInput/view/ChatInputView/README.md) +- [app/pages/AgentChat/ChatInput/view/EditorSurface](app/pages/AgentChat/ChatInput/view/EditorSurface/README.md) +- [app/pages/AgentChat/ChatInput/view/SendBlockBanner](app/pages/AgentChat/ChatInput/view/SendBlockBanner/README.md) +- [app/pages/AgentChat/mcp-cards/CalendarCard](app/pages/AgentChat/mcp-cards/CalendarCard/README.md) +- [app/pages/AgentChat/mcp-cards/cardColors](app/pages/AgentChat/mcp-cards/cardColors/README.md) +- [app/pages/AgentChat/mcp-cards/DriveCard](app/pages/AgentChat/mcp-cards/DriveCard/README.md) +- [app/pages/AgentChat/mcp-cards/GenericMcpCard](app/pages/AgentChat/mcp-cards/GenericMcpCard/README.md) +- [app/pages/AgentChat/mcp-cards/GmailCard](app/pages/AgentChat/mcp-cards/GmailCard/README.md) +- [app/pages/AgentChat/mcp-cards/GoogleServiceIcon](app/pages/AgentChat/mcp-cards/GoogleServiceIcon/README.md) +- [app/pages/AgentChat/mcp-cards/mcpCardHelpers](app/pages/AgentChat/mcp-cards/mcpCardHelpers/README.md) +- [app/pages/AgentChat/mcp-cards/McpResultCard](app/pages/AgentChat/mcp-cards/McpResultCard/README.md) +- [app/pages/AgentChat/parsing/agentToolParsing](app/pages/AgentChat/parsing/agentToolParsing/README.md) +- [app/pages/AgentChat/parsing/toolBubbleChrome](app/pages/AgentChat/parsing/toolBubbleChrome/README.md) +- [app/pages/AgentChat/parsing/toolColorize](app/pages/AgentChat/parsing/toolColorize/README.md) +- [app/pages/AgentChat/parsing/toolLabels](app/pages/AgentChat/parsing/toolLabels/README.md) +- [app/pages/AgentChat/parsing/toolResultParsing](app/pages/AgentChat/parsing/toolResultParsing/README.md) +- [app/pages/AgentChat/shell/ApprovalBar](app/pages/AgentChat/shell/ApprovalBar/README.md) +- [app/pages/AgentChat/shell/BranchNavigator](app/pages/AgentChat/shell/BranchNavigator/README.md) +- [app/pages/AgentChat/shell/BrowserAgentInlineFeed](app/pages/AgentChat/shell/BrowserAgentInlineFeed/README.md) +- [app/pages/AgentChat/shell/ContextDrawer](app/pages/AgentChat/shell/ContextDrawer/README.md) +- [app/pages/AgentChat/shell/FeedbackDialog](app/pages/AgentChat/shell/FeedbackDialog/README.md) +- [app/pages/AgentChat/shell/MessageActionBar](app/pages/AgentChat/shell/MessageActionBar/README.md) +- [app/pages/AgentChat/tool-bubbles/AgentResponseBody](app/pages/AgentChat/tool-bubbles/AgentResponseBody/README.md) +- [app/pages/AgentChat/tool-bubbles/CompactMcpBubble](app/pages/AgentChat/tool-bubbles/CompactMcpBubble/README.md) +- [app/pages/AgentChat/tool-bubbles/CreateAgentBubble](app/pages/AgentChat/tool-bubbles/CreateAgentBubble/README.md) +- [app/pages/AgentChat/tool-bubbles/DefaultToolBubble](app/pages/AgentChat/tool-bubbles/DefaultToolBubble/README.md) +- [app/pages/AgentChat/tool-bubbles/InvokeAgentBubble](app/pages/AgentChat/tool-bubbles/InvokeAgentBubble/README.md) +- [app/pages/AgentChat/tool-bubbles/ToolCallBubble](app/pages/AgentChat/tool-bubbles/ToolCallBubble/README.md) +- [app/pages/AgentChat/tool-bubbles/ToolGroupBubble](app/pages/AgentChat/tool-bubbles/ToolGroupBubble/README.md) +- [app/pages/AgentChat/tool-bubbles/useMountReveal](app/pages/AgentChat/tool-bubbles/useMountReveal/README.md) +- [app/pages/Analytics/Analytics](app/pages/Analytics/Analytics/README.md) +- [app/pages/Analytics/PixelChart](app/pages/Analytics/PixelChart/README.md) +- [app/pages/Commands/Commands](app/pages/Commands/Commands/README.md) +- [app/pages/Customization/Customization](app/pages/Customization/Customization/README.md) +- [app/pages/Dashboard/canvas/DashboardCanvas](app/pages/Dashboard/canvas/DashboardCanvas/README.md) +- [app/pages/Dashboard/canvas/DashboardCardLayer](app/pages/Dashboard/canvas/DashboardCardLayer/README.md) +- [app/pages/Dashboard/canvas/DashboardEmptyState](app/pages/Dashboard/canvas/DashboardEmptyState/README.md) +- [app/pages/Dashboard/canvas/DashboardHeader](app/pages/Dashboard/canvas/DashboardHeader/README.md) +- [app/pages/Dashboard/canvas/DashboardOverlays](app/pages/Dashboard/canvas/DashboardOverlays/README.md) +- [app/pages/Dashboard/canvas/TetherLayer](app/pages/Dashboard/canvas/TetherLayer/README.md) +- [app/pages/Dashboard/cards/AgentCard](app/pages/Dashboard/cards/AgentCard/README.md) +- [app/pages/Dashboard/cards/BrowserAgentOverlay](app/pages/Dashboard/cards/BrowserAgentOverlay/README.md) +- [app/pages/Dashboard/cards/BrowserCard](app/pages/Dashboard/cards/BrowserCard/README.md) +- [app/pages/Dashboard/cards/BrowserReplayOverlay](app/pages/Dashboard/cards/BrowserReplayOverlay/README.md) +- [app/pages/Dashboard/cards/DashboardViewCard](app/pages/Dashboard/cards/DashboardViewCard/README.md) +- [app/pages/Dashboard/cards/NoteCard](app/pages/Dashboard/cards/NoteCard/README.md) +- [app/pages/Dashboard/ChatBubbleTeardrop](app/pages/Dashboard/ChatBubbleTeardrop/README.md) +- [app/pages/Dashboard/controls/CanvasControls](app/pages/Dashboard/controls/CanvasControls/README.md) +- [app/pages/Dashboard/controls/CardSearchPalette](app/pages/Dashboard/controls/CardSearchPalette/README.md) +- [app/pages/Dashboard/controls/CloseAgentDialog](app/pages/Dashboard/controls/CloseAgentDialog/README.md) +- [app/pages/Dashboard/controls/DirectionHints](app/pages/Dashboard/controls/DirectionHints/README.md) +- [app/pages/Dashboard/controls/Minimap](app/pages/Dashboard/controls/Minimap/README.md) +- [app/pages/Dashboard/Dashboard](app/pages/Dashboard/Dashboard/README.md) +- [app/pages/Dashboard/DashboardToolbar](app/pages/Dashboard/DashboardToolbar/README.md) +- [app/pages/Dashboard/geometry/captureDashboardThumbnail](app/pages/Dashboard/geometry/captureDashboardThumbnail/README.md) +- [app/pages/Dashboard/geometry/contentBounds](app/pages/Dashboard/geometry/contentBounds/README.md) +- [app/pages/Dashboard/geometry/dashboardTethers](app/pages/Dashboard/geometry/dashboardTethers/README.md) +- [app/pages/Dashboard/geometry/getCardRect](app/pages/Dashboard/geometry/getCardRect/README.md) +- [app/pages/Dashboard/hooks/interaction/useArrowNav](app/pages/Dashboard/hooks/interaction/useArrowNav/README.md) +- [app/pages/Dashboard/hooks/interaction/useCanvasControls](app/pages/Dashboard/hooks/interaction/useCanvasControls/README.md) +- [app/pages/Dashboard/hooks/interaction/useCardDrag](app/pages/Dashboard/hooks/interaction/useCardDrag/README.md) +- [app/pages/Dashboard/hooks/interaction/useDashboardClipboard](app/pages/Dashboard/hooks/interaction/useDashboardClipboard/README.md) +- [app/pages/Dashboard/hooks/interaction/useDashboardInteractions](app/pages/Dashboard/hooks/interaction/useDashboardInteractions/README.md) +- [app/pages/Dashboard/hooks/interaction/useDashboardShortcuts](app/pages/Dashboard/hooks/interaction/useDashboardShortcuts/README.md) +- [app/pages/Dashboard/hooks/interaction/useOverlayScrollPassthrough](app/pages/Dashboard/hooks/interaction/useOverlayScrollPassthrough/README.md) +- [app/pages/Dashboard/hooks/interaction/useWebviewSuspend](app/pages/Dashboard/hooks/interaction/useWebviewSuspend/README.md) +- [app/pages/Dashboard/hooks/lifecycle/useAgentSpawn](app/pages/Dashboard/hooks/lifecycle/useAgentSpawn/README.md) +- [app/pages/Dashboard/hooks/lifecycle/useDashboardCardActions](app/pages/Dashboard/hooks/lifecycle/useDashboardCardActions/README.md) +- [app/pages/Dashboard/hooks/lifecycle/useDashboardLifecycle](app/pages/Dashboard/hooks/lifecycle/useDashboardLifecycle/README.md) +- [app/pages/Dashboard/hooks/lifecycle/useSiblingRestack](app/pages/Dashboard/hooks/lifecycle/useSiblingRestack/README.md) +- [app/pages/Dashboard/hooks/lifecycle/useSubAgentLifecycle](app/pages/Dashboard/hooks/lifecycle/useSubAgentLifecycle/README.md) +- [app/pages/Dashboard/hooks/state/useDashboardController](app/pages/Dashboard/hooks/state/useDashboardController/README.md) +- [app/pages/Dashboard/hooks/state/useDashboardSelection](app/pages/Dashboard/hooks/state/useDashboardSelection/README.md) +- [app/pages/Dashboard/hooks/state/useDashboardSelectors](app/pages/Dashboard/hooks/state/useDashboardSelectors/README.md) +- [app/pages/Dashboard/hooks/state/useDashboardThumbnail](app/pages/Dashboard/hooks/state/useDashboardThumbnail/README.md) +- [app/pages/Dashboard/hooks/state/useDashboardUiState](app/pages/Dashboard/hooks/state/useDashboardUiState/README.md) +- [app/pages/Dashboard/hooks/state/useLayoutSave](app/pages/Dashboard/hooks/state/useLayoutSave/README.md) +- [app/pages/DashboardSelection/DashboardSelection](app/pages/DashboardSelection/DashboardSelection/README.md) +- [app/pages/Modes/Modes](app/pages/Modes/Modes/README.md) +- [app/pages/Settings/sections/general/GeneralAdvanced](app/pages/Settings/sections/general/GeneralAdvanced/README.md) +- [app/pages/Settings/sections/general/GeneralAgentDefaults](app/pages/Settings/sections/general/GeneralAgentDefaults/README.md) +- [app/pages/Settings/sections/general/GeneralInterface](app/pages/Settings/sections/general/GeneralInterface/README.md) +- [app/pages/Settings/sections/general/GeneralTab](app/pages/Settings/sections/general/GeneralTab/README.md) +- [app/pages/Settings/sections/general/SoftwareUpdateRow](app/pages/Settings/sections/general/SoftwareUpdateRow/README.md) +- [app/pages/Settings/sections/models/ApiKeyCard](app/pages/Settings/sections/models/ApiKeyCard/README.md) +- [app/pages/Settings/sections/models/CustomProvidersEditor](app/pages/Settings/sections/models/CustomProvidersEditor/README.md) +- [app/pages/Settings/sections/models/ModelsTab](app/pages/Settings/sections/models/ModelsTab/README.md) +- [app/pages/Settings/sections/SettingsHeader](app/pages/Settings/sections/SettingsHeader/README.md) +- [app/pages/Settings/sections/settingsStyles](app/pages/Settings/sections/settingsStyles/README.md) +- [app/pages/Settings/sections/subscription/AccountCard](app/pages/Settings/sections/subscription/AccountCard/README.md) +- [app/pages/Settings/sections/subscription/OpenSwarmProCard](app/pages/Settings/sections/subscription/OpenSwarmProCard/README.md) +- [app/pages/Settings/sections/subscription/SubscriptionCard](app/pages/Settings/sections/subscription/SubscriptionCard/README.md) +- [app/pages/Settings/sections/subscription/SubscriptionCards](app/pages/Settings/sections/subscription/SubscriptionCards/README.md) +- [app/pages/Settings/sections/subscription/subscriptionConnect](app/pages/Settings/sections/subscription/subscriptionConnect/README.md) +- [app/pages/Settings/sections/subscription/subscriptionProviders](app/pages/Settings/sections/subscription/subscriptionProviders/README.md) +- [app/pages/Settings/sections/usage/PixelBar](app/pages/Settings/sections/usage/PixelBar/README.md) +- [app/pages/Settings/sections/usage/UsageStats](app/pages/Settings/sections/usage/UsageStats/README.md) +- [app/pages/Settings/Settings](app/pages/Settings/Settings/README.md) +- [app/pages/Skills/SkillBuilderChat](app/pages/Skills/SkillBuilderChat/README.md) +- [app/pages/Skills/Skills](app/pages/Skills/Skills/README.md) +- [app/pages/Tools/cards/BrowserPermissionCard](app/pages/Tools/cards/BrowserPermissionCard/README.md) +- [app/pages/Tools/cards/CustomToolCard](app/pages/Tools/cards/CustomToolCard/README.md) +- [app/pages/Tools/cards/CustomToolConnect](app/pages/Tools/cards/CustomToolConnect/README.md) +- [app/pages/Tools/cards/CustomToolDevInfo](app/pages/Tools/cards/CustomToolDevInfo/README.md) +- [app/pages/Tools/cards/IntegrationGalleryCard](app/pages/Tools/cards/IntegrationGalleryCard/README.md) +- [app/pages/Tools/cards/ServiceGroup](app/pages/Tools/cards/ServiceGroup/README.md) +- [app/pages/Tools/cards/ToolSection](app/pages/Tools/cards/ToolSection/README.md) +- [app/pages/Tools/dialogs/McpConfigDialog](app/pages/Tools/dialogs/McpConfigDialog/README.md) +- [app/pages/Tools/dialogs/RegistryBrowserDialog](app/pages/Tools/dialogs/RegistryBrowserDialog/README.md) +- [app/pages/Tools/dialogs/RegistryServerRow](app/pages/Tools/dialogs/RegistryServerRow/README.md) +- [app/pages/Tools/dialogs/ToolDialogs](app/pages/Tools/dialogs/ToolDialogs/README.md) +- [app/pages/Tools/hooks/useBuiltinSections](app/pages/Tools/hooks/useBuiltinSections/README.md) +- [app/pages/Tools/hooks/useRegistryBrowser](app/pages/Tools/hooks/useRegistryBrowser/README.md) +- [app/pages/Tools/hooks/useToolConnections](app/pages/Tools/hooks/useToolConnections/README.md) +- [app/pages/Tools/hooks/useToolsActions](app/pages/Tools/hooks/useToolsActions/README.md) +- [app/pages/Tools/integrations](app/pages/Tools/integrations/README.md) +- [app/pages/Tools/Tools](app/pages/Tools/Tools/README.md) +- [app/pages/Tools/toolsHelpers](app/pages/Tools/toolsHelpers/README.md) +- [app/pages/Views/CodeEditor](app/pages/Views/CodeEditor/README.md) +- [app/pages/Views/InputSchemaForm](app/pages/Views/InputSchemaForm/README.md) +- [app/pages/Views/TerminalPanel](app/pages/Views/TerminalPanel/README.md) +- [app/pages/Views/useIframeElementSelector](app/pages/Views/useIframeElementSelector/README.md) +- [app/pages/Views/ViewCard](app/pages/Views/ViewCard/README.md) +- [app/pages/Views/ViewEditor](app/pages/Views/ViewEditor/README.md) +- [app/pages/Views/ViewPreview](app/pages/Views/ViewPreview/README.md) +- [app/pages/Views/ViewRunDialog](app/pages/Views/ViewRunDialog/README.md) +- [app/pages/Views/Views](app/pages/Views/Views/README.md) +- [index](index/README.md) +- [shared/agentWorkTime](shared/agentWorkTime/README.md) +- [shared/browserCommandHandler](shared/browserCommandHandler/README.md) +- [shared/browserRegistry](shared/browserRegistry/README.md) +- [shared/browserSettle](shared/browserSettle/README.md) +- [shared/canvasInteractionState](shared/canvasInteractionState/README.md) +- [shared/config](shared/config/README.md) +- [shared/dashboardClipboard](shared/dashboardClipboard/README.md) +- [shared/hooks](shared/hooks/README.md) +- [shared/hooks/useDashboardActive](shared/hooks/useDashboardActive/README.md) +- [shared/hooks/useDeepLink](shared/hooks/useDeepLink/README.md) +- [shared/hooks/useInteractionHeartbeat](shared/hooks/useInteractionHeartbeat/README.md) +- [shared/hooks/useLastDashboardId](shared/hooks/useLastDashboardId/README.md) +- [shared/hooks/useReducedMotion](shared/hooks/useReducedMotion/README.md) +- [shared/hooks/useRouteTracker](shared/hooks/useRouteTracker/README.md) +- [shared/hooks/useRuntimePreviewUrl](shared/hooks/useRuntimePreviewUrl/README.md) +- [shared/hooks/useWindowFocus](shared/hooks/useWindowFocus/README.md) +- [shared/inputSchemaDefaults](shared/inputSchemaDefaults/README.md) +- [shared/interactiveRanking](shared/interactiveRanking/README.md) +- [shared/mcpToolMeta](shared/mcpToolMeta/README.md) +- [shared/migrations](shared/migrations/README.md) +- [shared/modals/UnderConstruction/UnderConstruction](shared/modals/UnderConstruction/UnderConstruction/README.md) +- [shared/notifications](shared/notifications/README.md) +- [shared/previewOrder](shared/previewOrder/README.md) +- [shared/resolveUrl](shared/resolveUrl/README.md) +- [shared/sanitizeSvg](shared/sanitizeSvg/README.md) +- [shared/serviceClient](shared/serviceClient/README.md) +- [shared/state/agentsSlice](shared/state/agentsSlice/README.md) +- [shared/state/dashboardLayoutSlice](shared/state/dashboardLayoutSlice/README.md) +- [shared/state/dashboardsSlice](shared/state/dashboardsSlice/README.md) +- [shared/state/interactionSlice](shared/state/interactionSlice/README.md) +- [shared/state/mcpRegistrySlice](shared/state/mcpRegistrySlice/README.md) +- [shared/state/modelsSlice](shared/state/modelsSlice/README.md) +- [shared/state/modesSlice](shared/state/modesSlice/README.md) +- [shared/state/onboardingProgressSlice](shared/state/onboardingProgressSlice/README.md) +- [shared/state/outputsSlice](shared/state/outputsSlice/README.md) +- [shared/state/settingsSlice](shared/state/settingsSlice/README.md) +- [shared/state/skillRegistrySlice](shared/state/skillRegistrySlice/README.md) +- [shared/state/skillsSlice](shared/state/skillsSlice/README.md) +- [shared/state/store](shared/state/store/README.md) +- [shared/state/streamingSlice](shared/state/streamingSlice/README.md) +- [shared/state/subscriptionsSlice](shared/state/subscriptionsSlice/README.md) +- [shared/state/tempStateSlice](shared/state/tempStateSlice/README.md) +- [shared/state/toolsSlice](shared/state/toolsSlice/README.md) +- [shared/state/updateSlice](shared/state/updateSlice/README.md) +- [shared/statusLabel](shared/statusLabel/README.md) +- [shared/styles/claudeTokens](shared/styles/claudeTokens/README.md) +- [shared/styles/motionTokens](shared/styles/motionTokens/README.md) +- [shared/styles/ThemeContext](shared/styles/ThemeContext/README.md) +- [shared/subscription/checkout](shared/subscription/checkout/README.md) +- [shared/useBrowserActivity](shared/useBrowserActivity/README.md) +- [shared/ws/WebSocketManager](shared/ws/WebSocketManager/README.md) +- [types/css-modules](types/css-modules/README.md) +- [types/electron](types/electron/README.md) diff --git a/frontend/.typedoc/app/Main/README.md b/frontend/.typedoc/app/Main/README.md new file mode 100644 index 00000000..ae4a3f43 --- /dev/null +++ b/frontend/.typedoc/app/Main/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../README.md) + +*** + +[open-swarm](../../README.md) / app/Main + +# app/Main + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/Main/variables/default.md b/frontend/.typedoc/app/Main/variables/default.md new file mode 100644 index 00000000..4675c5c9 --- /dev/null +++ b/frontend/.typedoc/app/Main/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [app/Main](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/Main.tsx:532](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/Main.tsx#L532) diff --git a/frontend/.typedoc/app/components/Layout/AppShell/README.md b/frontend/.typedoc/app/components/Layout/AppShell/README.md new file mode 100644 index 00000000..fe96a246 --- /dev/null +++ b/frontend/.typedoc/app/components/Layout/AppShell/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/components/Layout/AppShell + +# app/components/Layout/AppShell + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/components/Layout/AppShell/variables/default.md b/frontend/.typedoc/app/components/Layout/AppShell/variables/default.md new file mode 100644 index 00000000..1253a04a --- /dev/null +++ b/frontend/.typedoc/app/components/Layout/AppShell/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/Layout/AppShell](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Layout/AppShell.tsx:67](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Layout/AppShell.tsx#L67) diff --git a/frontend/.typedoc/app/components/Layout/DashboardHost/README.md b/frontend/.typedoc/app/components/Layout/DashboardHost/README.md new file mode 100644 index 00000000..e4f18dde --- /dev/null +++ b/frontend/.typedoc/app/components/Layout/DashboardHost/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/components/Layout/DashboardHost + +# app/components/Layout/DashboardHost + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/components/Layout/DashboardHost/variables/default.md b/frontend/.typedoc/app/components/Layout/DashboardHost/variables/default.md new file mode 100644 index 00000000..bb7ca777 --- /dev/null +++ b/frontend/.typedoc/app/components/Layout/DashboardHost/variables/default.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/Layout/DashboardHost](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`DashboardHostProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Layout/DashboardHost.tsx:10](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Layout/DashboardHost.tsx#L10) + +Stable container that hides Dashboard via CSS so embedded webviews survive non-dashboard nav. diff --git a/frontend/.typedoc/app/components/Layout/animatedIcons/README.md b/frontend/.typedoc/app/components/Layout/animatedIcons/README.md new file mode 100644 index 00000000..eb8a450d --- /dev/null +++ b/frontend/.typedoc/app/components/Layout/animatedIcons/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/components/Layout/animatedIcons + +# app/components/Layout/animatedIcons + +## Functions + +- [AnimatedPanelLeft](functions/AnimatedPanelLeft.md) diff --git a/frontend/.typedoc/app/components/Layout/animatedIcons/functions/AnimatedPanelLeft.md b/frontend/.typedoc/app/components/Layout/animatedIcons/functions/AnimatedPanelLeft.md new file mode 100644 index 00000000..3f7ae43b --- /dev/null +++ b/frontend/.typedoc/app/components/Layout/animatedIcons/functions/AnimatedPanelLeft.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/Layout/animatedIcons](../README.md) / AnimatedPanelLeft + +# Function: AnimatedPanelLeft() + +> **AnimatedPanelLeft**(`__namedParameters`): `Element` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Layout/animatedIcons.tsx:22](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Layout/animatedIcons.tsx#L22) + +## Parameters + +### \_\_namedParameters + +`Props` + +## Returns + +`Element` diff --git a/frontend/.typedoc/app/components/Onboarding/OnboardingDirector/README.md b/frontend/.typedoc/app/components/Onboarding/OnboardingDirector/README.md new file mode 100644 index 00000000..ea88c8fe --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/OnboardingDirector/README.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/components/Onboarding/OnboardingDirector + +# app/components/Onboarding/OnboardingDirector + +## Variables + +- [onboardingDirector](variables/onboardingDirector.md) + +## Functions + +- [getRoadmap](functions/getRoadmap.md) diff --git a/frontend/.typedoc/app/components/Onboarding/OnboardingDirector/functions/getRoadmap.md b/frontend/.typedoc/app/components/Onboarding/OnboardingDirector/functions/getRoadmap.md new file mode 100644 index 00000000..df921665 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/OnboardingDirector/functions/getRoadmap.md @@ -0,0 +1,17 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/Onboarding/OnboardingDirector](../README.md) / getRoadmap + +# Function: getRoadmap() + +> **getRoadmap**(): [`OnboardingStep`](../../steps/types/interfaces/OnboardingStep.md)[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/OnboardingDirector.ts:129](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/OnboardingDirector.ts#L129) + +Ordered roadmap (1..10); STEPS is the source of truth. + +## Returns + +[`OnboardingStep`](../../steps/types/interfaces/OnboardingStep.md)[] diff --git a/frontend/.typedoc/app/components/Onboarding/OnboardingDirector/variables/onboardingDirector.md b/frontend/.typedoc/app/components/Onboarding/OnboardingDirector/variables/onboardingDirector.md new file mode 100644 index 00000000..2733817f --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/OnboardingDirector/variables/onboardingDirector.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/Onboarding/OnboardingDirector](../README.md) / onboardingDirector + +# Variable: onboardingDirector + +> `const` **onboardingDirector**: `OnboardingDirector` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/OnboardingDirector.ts:126](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/OnboardingDirector.ts#L126) diff --git a/frontend/.typedoc/app/components/Onboarding/OnboardingPanel/README.md b/frontend/.typedoc/app/components/Onboarding/OnboardingPanel/README.md new file mode 100644 index 00000000..26cd07fa --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/OnboardingPanel/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/components/Onboarding/OnboardingPanel + +# app/components/Onboarding/OnboardingPanel + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/components/Onboarding/OnboardingPanel/variables/default.md b/frontend/.typedoc/app/components/Onboarding/OnboardingPanel/variables/default.md new file mode 100644 index 00000000..423f59bb --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/OnboardingPanel/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/Onboarding/OnboardingPanel](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/OnboardingPanel.tsx:51](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/OnboardingPanel.tsx#L51) diff --git a/frontend/.typedoc/app/components/Onboarding/OnboardingRoadmapModal/README.md b/frontend/.typedoc/app/components/Onboarding/OnboardingRoadmapModal/README.md new file mode 100644 index 00000000..81f4b96d --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/OnboardingRoadmapModal/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/components/Onboarding/OnboardingRoadmapModal + +# app/components/Onboarding/OnboardingRoadmapModal + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/components/Onboarding/OnboardingRoadmapModal/variables/default.md b/frontend/.typedoc/app/components/Onboarding/OnboardingRoadmapModal/variables/default.md new file mode 100644 index 00000000..dd3ae954 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/OnboardingRoadmapModal/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/Onboarding/OnboardingRoadmapModal](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/OnboardingRoadmapModal.tsx:18](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/OnboardingRoadmapModal.tsx#L18) diff --git a/frontend/.typedoc/app/components/Onboarding/OnboardingRoot/README.md b/frontend/.typedoc/app/components/Onboarding/OnboardingRoot/README.md new file mode 100644 index 00000000..77536577 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/OnboardingRoot/README.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/components/Onboarding/OnboardingRoot + +# app/components/Onboarding/OnboardingRoot + +## References + +### default + +Renames and re-exports [OnboardingRoot](../variables/OnboardingRoot.md) diff --git a/frontend/.typedoc/app/components/Onboarding/README.md b/frontend/.typedoc/app/components/Onboarding/README.md new file mode 100644 index 00000000..bb303bd5 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/README.md @@ -0,0 +1,41 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / app/components/Onboarding + +# app/components/Onboarding + +## Variables + +- [OnboardingRoot](variables/OnboardingRoot.md) + +## References + +### onboardingBus + +Re-exports [onboardingBus](eventBus/variables/onboardingBus.md) + +*** + +### onboardingDirector + +Re-exports [onboardingDirector](OnboardingDirector/variables/onboardingDirector.md) + +*** + +### OnboardingEvent + +Re-exports [OnboardingEvent](eventBus/type-aliases/OnboardingEvent.md) + +*** + +### OnboardingSelectors + +Renames and re-exports [S](selectors/variables/S.md) + +*** + +### useOnboardingProgress + +Re-exports [useOnboardingProgress](hooks/useOnboardingProgress/functions/useOnboardingProgress.md) diff --git a/frontend/.typedoc/app/components/Onboarding/_motionWin/README.md b/frontend/.typedoc/app/components/Onboarding/_motionWin/README.md new file mode 100644 index 00000000..c49c9881 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/_motionWin/README.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/components/Onboarding/\_motionWin + +# app/components/Onboarding/\_motionWin + +## Variables + +- [AnimatePresence](variables/AnimatePresence.md) +- [motion](variables/motion.md) +- [useAnimationControls](variables/useAnimationControls.md) diff --git a/frontend/.typedoc/app/components/Onboarding/_motionWin/variables/AnimatePresence.md b/frontend/.typedoc/app/components/Onboarding/_motionWin/variables/AnimatePresence.md new file mode 100644 index 00000000..6a26f5bf --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/_motionWin/variables/AnimatePresence.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/Onboarding/\_motionWin](../README.md) / AnimatePresence + +# Variable: AnimatePresence + +> `const` **AnimatePresence**: *typeof* `fm.AnimatePresence` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/\_motionWin.tsx:65](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/_motionWin.tsx#L65) diff --git a/frontend/.typedoc/app/components/Onboarding/_motionWin/variables/motion.md b/frontend/.typedoc/app/components/Onboarding/_motionWin/variables/motion.md new file mode 100644 index 00000000..439c1bbe --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/_motionWin/variables/motion.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/Onboarding/\_motionWin](../README.md) / motion + +# Variable: motion + +> `const` **motion**: *typeof* `fm.motion` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/\_motionWin.tsx:64](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/_motionWin.tsx#L64) diff --git a/frontend/.typedoc/app/components/Onboarding/_motionWin/variables/useAnimationControls.md b/frontend/.typedoc/app/components/Onboarding/_motionWin/variables/useAnimationControls.md new file mode 100644 index 00000000..b7c36ff7 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/_motionWin/variables/useAnimationControls.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/Onboarding/\_motionWin](../README.md) / useAnimationControls + +# Variable: useAnimationControls + +> `const` **useAnimationControls**: *typeof* `fm.useAnimationControls` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/\_motionWin.tsx:75](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/_motionWin.tsx#L75) diff --git a/frontend/.typedoc/app/components/Onboarding/ac/ACGestures/README.md b/frontend/.typedoc/app/components/Onboarding/ac/ACGestures/README.md new file mode 100644 index 00000000..9b7dcce7 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/ac/ACGestures/README.md @@ -0,0 +1,18 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/components/Onboarding/ac/ACGestures + +# app/components/Onboarding/ac/ACGestures + +## Interfaces + +- [DragRect](interfaces/DragRect.md) + +## Functions + +- [animateDragSelect](functions/animateDragSelect.md) +- [clickRipple](functions/clickRipple.md) +- [sleep](functions/sleep.md) +- [spawnGlowRect](functions/spawnGlowRect.md) diff --git a/frontend/.typedoc/app/components/Onboarding/ac/ACGestures/functions/animateDragSelect.md b/frontend/.typedoc/app/components/Onboarding/ac/ACGestures/functions/animateDragSelect.md new file mode 100644 index 00000000..ecbaad7f --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/ac/ACGestures/functions/animateDragSelect.md @@ -0,0 +1,29 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/ac/ACGestures](../README.md) / animateDragSelect + +# Function: animateDragSelect() + +> **animateDragSelect**(`rect`, `color`, `durationMs?`): `Promise`\<`void`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/ACGestures.ts:35](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/ACGestures.ts#L35) + +## Parameters + +### rect + +[`DragRect`](../interfaces/DragRect.md) + +### color + +`string` + +### durationMs? + +`number` = `600` + +## Returns + +`Promise`\<`void`\> diff --git a/frontend/.typedoc/app/components/Onboarding/ac/ACGestures/functions/clickRipple.md b/frontend/.typedoc/app/components/Onboarding/ac/ACGestures/functions/clickRipple.md new file mode 100644 index 00000000..b493ce33 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/ac/ACGestures/functions/clickRipple.md @@ -0,0 +1,29 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/ac/ACGestures](../README.md) / clickRipple + +# Function: clickRipple() + +> **clickRipple**(`x`, `y`, `color`): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/ACGestures.ts:3](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/ACGestures.ts#L3) + +## Parameters + +### x + +`number` + +### y + +`number` + +### color + +`string` + +## Returns + +`void` diff --git a/frontend/.typedoc/app/components/Onboarding/ac/ACGestures/functions/sleep.md b/frontend/.typedoc/app/components/Onboarding/ac/ACGestures/functions/sleep.md new file mode 100644 index 00000000..73044538 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/ac/ACGestures/functions/sleep.md @@ -0,0 +1,23 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/ac/ACGestures](../README.md) / sleep + +# Function: sleep() + +> **sleep**(`ms`): `Promise`\<`void`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/ACGestures.ts:100](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/ACGestures.ts#L100) + +Promise-wrapped setTimeout for use between ops. + +## Parameters + +### ms + +`number` + +## Returns + +`Promise`\<`void`\> diff --git a/frontend/.typedoc/app/components/Onboarding/ac/ACGestures/functions/spawnGlowRect.md b/frontend/.typedoc/app/components/Onboarding/ac/ACGestures/functions/spawnGlowRect.md new file mode 100644 index 00000000..cd52d68e --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/ac/ACGestures/functions/spawnGlowRect.md @@ -0,0 +1,27 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/ac/ACGestures](../README.md) / spawnGlowRect + +# Function: spawnGlowRect() + +> **spawnGlowRect**(`target`, `color`): () => `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/ACGestures.ts:71](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/ACGestures.ts#L71) + +Soft glow rect over a target (no click); caller must invoke the returned cleanup. + +## Parameters + +### target + +`HTMLElement` + +### color + +`string` + +## Returns + +() => `void` diff --git a/frontend/.typedoc/app/components/Onboarding/ac/ACGestures/interfaces/DragRect.md b/frontend/.typedoc/app/components/Onboarding/ac/ACGestures/interfaces/DragRect.md new file mode 100644 index 00000000..337feaab --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/ac/ACGestures/interfaces/DragRect.md @@ -0,0 +1,41 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/ac/ACGestures](../README.md) / DragRect + +# Interface: DragRect + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/ACGestures.ts:28](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/ACGestures.ts#L28) + +## Properties + +### fromX + +> **fromX**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/ACGestures.ts:29](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/ACGestures.ts#L29) + +*** + +### fromY + +> **fromY**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/ACGestures.ts:30](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/ACGestures.ts#L30) + +*** + +### toX + +> **toX**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/ACGestures.ts:31](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/ACGestures.ts#L31) + +*** + +### toY + +> **toY**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/ACGestures.ts:32](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/ACGestures.ts#L32) diff --git a/frontend/.typedoc/app/components/Onboarding/ac/ACMultiChoice/README.md b/frontend/.typedoc/app/components/Onboarding/ac/ACMultiChoice/README.md new file mode 100644 index 00000000..91ff5c52 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/ac/ACMultiChoice/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/components/Onboarding/ac/ACMultiChoice + +# app/components/Onboarding/ac/ACMultiChoice + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/components/Onboarding/ac/ACMultiChoice/variables/default.md b/frontend/.typedoc/app/components/Onboarding/ac/ACMultiChoice/variables/default.md new file mode 100644 index 00000000..adc2cec7 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/ac/ACMultiChoice/variables/default.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/ac/ACMultiChoice](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/ACMultiChoice.tsx:24](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/ACMultiChoice.tsx#L24) + +Single-select multi-choice popup. Same chrome as ACPopup but with +answer chips. Captures pointer events (auto) so chips are clickable. +Stays mounted until user picks (or runtime aborts via hidePopup). diff --git a/frontend/.typedoc/app/components/Onboarding/ac/ACPopup/README.md b/frontend/.typedoc/app/components/Onboarding/ac/ACPopup/README.md new file mode 100644 index 00000000..bc55099a --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/ac/ACPopup/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/components/Onboarding/ac/ACPopup + +# app/components/Onboarding/ac/ACPopup + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/components/Onboarding/ac/ACPopup/variables/default.md b/frontend/.typedoc/app/components/Onboarding/ac/ACPopup/variables/default.md new file mode 100644 index 00000000..5a0570c5 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/ac/ACPopup/variables/default.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/ac/ACPopup](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/ACPopup.tsx:24](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/ACPopup.tsx#L24) + +Non-blocking cursor popup; streams char-by-char above the cursor (flips below if no room). diff --git a/frontend/.typedoc/app/components/Onboarding/ac/ACTypewriter/README.md b/frontend/.typedoc/app/components/Onboarding/ac/ACTypewriter/README.md new file mode 100644 index 00000000..d9cee5bb --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/ac/ACTypewriter/README.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/components/Onboarding/ac/ACTypewriter + +# app/components/Onboarding/ac/ACTypewriter + +## Interfaces + +- [TypeIntoOptions](interfaces/TypeIntoOptions.md) + +## Functions + +- [typeInto](functions/typeInto.md) diff --git a/frontend/.typedoc/app/components/Onboarding/ac/ACTypewriter/functions/typeInto.md b/frontend/.typedoc/app/components/Onboarding/ac/ACTypewriter/functions/typeInto.md new file mode 100644 index 00000000..2ed69ceb --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/ac/ACTypewriter/functions/typeInto.md @@ -0,0 +1,29 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/ac/ACTypewriter](../README.md) / typeInto + +# Function: typeInto() + +> **typeInto**(`el`, `text`, `opts?`): `Promise`\<`void`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/ACTypewriter.ts:89](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/ACTypewriter.ts#L89) + +## Parameters + +### el + +`HTMLElement` + +### text + +`string` + +### opts? + +[`TypeIntoOptions`](../interfaces/TypeIntoOptions.md) = `{}` + +## Returns + +`Promise`\<`void`\> diff --git a/frontend/.typedoc/app/components/Onboarding/ac/ACTypewriter/interfaces/TypeIntoOptions.md b/frontend/.typedoc/app/components/Onboarding/ac/ACTypewriter/interfaces/TypeIntoOptions.md new file mode 100644 index 00000000..0bfbe813 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/ac/ACTypewriter/interfaces/TypeIntoOptions.md @@ -0,0 +1,31 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/ac/ACTypewriter](../README.md) / TypeIntoOptions + +# Interface: TypeIntoOptions + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/ACTypewriter.ts:75](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/ACTypewriter.ts#L75) + +## Properties + +### onTick? + +> `optional` **onTick?**: () => `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/ACTypewriter.ts:78](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/ACTypewriter.ts#L78) + +Per-char callback so the cursor can re-align to the input's right edge as text grows. + +#### Returns + +`void` + +*** + +### speedMs? + +> `optional` **speedMs?**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/ACTypewriter.ts:76](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/ACTypewriter.ts#L76) diff --git a/frontend/.typedoc/app/components/Onboarding/ac/AgenticCursor/README.md b/frontend/.typedoc/app/components/Onboarding/ac/AgenticCursor/README.md new file mode 100644 index 00000000..00d6f3cc --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/ac/AgenticCursor/README.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/components/Onboarding/ac/AgenticCursor + +# app/components/Onboarding/ac/AgenticCursor + +## Interfaces + +- [AgenticCursorHandle](interfaces/AgenticCursorHandle.md) + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/components/Onboarding/ac/AgenticCursor/interfaces/AgenticCursorHandle.md b/frontend/.typedoc/app/components/Onboarding/ac/AgenticCursor/interfaces/AgenticCursorHandle.md new file mode 100644 index 00000000..b47daaf9 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/ac/AgenticCursor/interfaces/AgenticCursorHandle.md @@ -0,0 +1,218 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/ac/AgenticCursor](../README.md) / AgenticCursorHandle + +# Interface: AgenticCursorHandle + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/AgenticCursor.tsx:17](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/AgenticCursor.tsx#L17) + +## Properties + +### fadeIn + +> **fadeIn**: (`from`) => `Promise`\<`void`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/AgenticCursor.tsx:18](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/AgenticCursor.tsx#L18) + +#### Parameters + +##### from + +###### x + +`number` + +###### y + +`number` + +#### Returns + +`Promise`\<`void`\> + +*** + +### fadeOut + +> **fadeOut**: (`to`) => `Promise`\<`void`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/AgenticCursor.tsx:19](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/AgenticCursor.tsx#L19) + +#### Parameters + +##### to + +###### x + +`number` + +###### y + +`number` + +#### Returns + +`Promise`\<`void`\> + +*** + +### getPosition + +> **getPosition**: () => `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/AgenticCursor.tsx:40](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/AgenticCursor.tsx#L40) + +#### Returns + +`object` + +##### x + +> **x**: `number` + +##### y + +> **y**: `number` + +*** + +### hidePopup + +> **hidePopup**: () => `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/AgenticCursor.tsx:39](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/AgenticCursor.tsx#L39) + +#### Returns + +`void` + +*** + +### moveTo + +> **moveTo**: (`x`, `y`, `transition?`) => `Promise`\<`void`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/AgenticCursor.tsx:26](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/AgenticCursor.tsx#L26) + +Animated jump to (x, y). Defaults to the spring used for normal hops; +pass an override (e.g. a tween) when the cursor needs to ride alongside +a CSS-transitioned visual like the drag-select rect, where spring +overshoot would visibly desync from the rect's bottom-right corner. + +#### Parameters + +##### x + +`number` + +##### y + +`number` + +##### transition? + +`Record`\<`string`, `unknown`\> + +#### Returns + +`Promise`\<`void`\> + +*** + +### pressClick + +> **pressClick**: () => `Promise`\<`void`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/AgenticCursor.tsx:31](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/AgenticCursor.tsx#L31) + +#### Returns + +`Promise`\<`void`\> + +*** + +### showMultiChoice + +> **showMultiChoice**: (`q`, `opts`) => `Promise`\<`string`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/AgenticCursor.tsx:38](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/AgenticCursor.tsx#L38) + +Single-select multi-choice; resolves with the chosen option id. + +#### Parameters + +##### q + +`string` + +##### opts + +[`ACMultiChoiceOption`](../../../steps/types/type-aliases/ACMultiChoiceOption.md)[] + +#### Returns + +`Promise`\<`string`\> + +*** + +### showPopup + +> **showPopup**: (`text`) => `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/AgenticCursor.tsx:36](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/AgenticCursor.tsx#L36) + +Non-blocking popup above cursor; auto-clears on next physical-move op. + +#### Parameters + +##### text + +`string` + +#### Returns + +`void` + +*** + +### startTracking + +> **startTracking**: (`selector`, `offset?`) => `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/AgenticCursor.tsx:33](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/AgenticCursor.tsx#L33) + +Pin cursor to a live selector; rAF re-resolves so it follows reflows + React node swaps. + +#### Parameters + +##### selector + +`string` + +##### offset? + +###### x + +`number` + +###### y + +`number` + +#### Returns + +`void` + +*** + +### stopTracking + +> **stopTracking**: () => `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/AgenticCursor.tsx:34](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/AgenticCursor.tsx#L34) + +#### Returns + +`void` diff --git a/frontend/.typedoc/app/components/Onboarding/ac/AgenticCursor/variables/default.md b/frontend/.typedoc/app/components/Onboarding/ac/AgenticCursor/variables/default.md new file mode 100644 index 00000000..30b2bb25 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/ac/AgenticCursor/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/ac/AgenticCursor](../README.md) / default + +# Variable: default + +> `const` **default**: `ForwardRefExoticComponent`\<`RefAttributes`\<[`AgenticCursorHandle`](../interfaces/AgenticCursorHandle.md)\>\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/AgenticCursor.tsx:65](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/AgenticCursor.tsx#L65) diff --git a/frontend/.typedoc/app/components/Onboarding/ac/acRuntime/README.md b/frontend/.typedoc/app/components/Onboarding/ac/acRuntime/README.md new file mode 100644 index 00000000..34e8a240 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/ac/acRuntime/README.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/components/Onboarding/ac/acRuntime + +# app/components/Onboarding/ac/acRuntime + +## Interfaces + +- [RunStepArgs](interfaces/RunStepArgs.md) + +## Functions + +- [runStep](functions/runStep.md) diff --git a/frontend/.typedoc/app/components/Onboarding/ac/acRuntime/functions/runStep.md b/frontend/.typedoc/app/components/Onboarding/ac/acRuntime/functions/runStep.md new file mode 100644 index 00000000..cc5cec16 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/ac/acRuntime/functions/runStep.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/ac/acRuntime](../README.md) / runStep + +# Function: runStep() + +> **runStep**(`args`): `Promise`\<`void`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/acRuntime.ts:80](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/acRuntime.ts#L80) + +## Parameters + +### args + +[`RunStepArgs`](../interfaces/RunStepArgs.md) + +## Returns + +`Promise`\<`void`\> diff --git a/frontend/.typedoc/app/components/Onboarding/ac/acRuntime/interfaces/RunStepArgs.md b/frontend/.typedoc/app/components/Onboarding/ac/acRuntime/interfaces/RunStepArgs.md new file mode 100644 index 00000000..5fb2b7d7 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/ac/acRuntime/interfaces/RunStepArgs.md @@ -0,0 +1,101 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/ac/acRuntime](../README.md) / RunStepArgs + +# Interface: RunStepArgs + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/acRuntime.ts:69](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/acRuntime.ts#L69) + +## Properties + +### ac + +> **ac**: [`AgenticCursorHandle`](../../AgenticCursor/interfaces/AgenticCursorHandle.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/acRuntime.ts:72](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/acRuntime.ts#L72) + +*** + +### accentColor + +> **accentColor**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/acRuntime.ts:74](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/acRuntime.ts#L74) + +*** + +### findStep + +> **findStep**: (`id`) => [`OnboardingStep`](../../../steps/types/interfaces/OnboardingStep.md) \| `undefined` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/acRuntime.ts:76](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/acRuntime.ts#L76) + +#### Parameters + +##### id + +`string` + +#### Returns + +[`OnboardingStep`](../../../steps/types/interfaces/OnboardingStep.md) \| `undefined` + +*** + +### isDependencySatisfied? + +> `optional` **isDependencySatisfied?**: (`depId`) => `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/acRuntime.ts:77](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/acRuntime.ts#L77) + +#### Parameters + +##### depId + +`string` + +#### Returns + +`boolean` + +*** + +### signal + +> **signal**: `AbortSignal` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/acRuntime.ts:75](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/acRuntime.ts#L75) + +*** + +### spawnPoint + +> **spawnPoint**: `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/acRuntime.ts:71](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/acRuntime.ts#L71) + +#### x + +> **x**: `number` + +#### y + +> **y**: `number` + +*** + +### step + +> **step**: [`OnboardingStep`](../../../steps/types/interfaces/OnboardingStep.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/acRuntime.ts:70](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/acRuntime.ts#L70) + +*** + +### store + +> **store**: `Store`\<\{ `agents`: `AgentsState`; `dashboardLayout`: [`DashboardLayoutState`](../../../../../../shared/state/dashboardLayoutSlice/interfaces/DashboardLayoutState.md); `dashboards`: `DashboardsState`; `interaction`: `InteractionState`; `mcpRegistry`: `McpRegistryState`; `models`: `ModelsState`; `modes`: `ModesState`; `onboardingProgress`: [`OnboardingProgressState`](../../../../../../shared/state/onboardingProgressSlice/interfaces/OnboardingProgressState.md); `outputs`: `OutputsState`; `settings`: `SettingsState`; `skillRegistry`: `SkillRegistryState`; `skills`: `SkillsState`; `streaming`: `StreamingState`; `subscriptions`: [`SubscriptionsState`](../../../../../../shared/state/subscriptionsSlice/interfaces/SubscriptionsState.md); `tempState`: `TempState`; `tools`: `ToolsState`; `update`: `UpdateState`; \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/acRuntime.ts:73](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/acRuntime.ts#L73) diff --git a/frontend/.typedoc/app/components/Onboarding/ac/cursorStore/README.md b/frontend/.typedoc/app/components/Onboarding/ac/cursorStore/README.md new file mode 100644 index 00000000..876ccf1d --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/ac/cursorStore/README.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/components/Onboarding/ac/cursorStore + +# app/components/Onboarding/ac/cursorStore + +## Variables + +- [cursorStore](variables/cursorStore.md) + +## Functions + +- [useCursorPosition](functions/useCursorPosition.md) diff --git a/frontend/.typedoc/app/components/Onboarding/ac/cursorStore/functions/useCursorPosition.md b/frontend/.typedoc/app/components/Onboarding/ac/cursorStore/functions/useCursorPosition.md new file mode 100644 index 00000000..ad1b038d --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/ac/cursorStore/functions/useCursorPosition.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/ac/cursorStore](../README.md) / useCursorPosition + +# Function: useCursorPosition() + +> **useCursorPosition**(): `CursorPos` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/cursorStore.ts:73](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/cursorStore.ts#L73) + +## Returns + +`CursorPos` diff --git a/frontend/.typedoc/app/components/Onboarding/ac/cursorStore/variables/cursorStore.md b/frontend/.typedoc/app/components/Onboarding/ac/cursorStore/variables/cursorStore.md new file mode 100644 index 00000000..c4c48cca --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/ac/cursorStore/variables/cursorStore.md @@ -0,0 +1,49 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/ac/cursorStore](../README.md) / cursorStore + +# Variable: cursorStore + +> `const` **cursorStore**: `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/ac/cursorStore.ts:29](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/ac/cursorStore.ts#L29) + +## Type Declaration + +### get + +> **get**: () => `CursorPos` + +#### Returns + +`CursorPos` + +### set() + +> **set**(`next`): `void` + +#### Parameters + +##### next + +`Partial`\<`CursorPos`\> + +#### Returns + +`void` + +### subscribe() + +> **subscribe**(`listener`): () => `boolean` + +#### Parameters + +##### listener + +() => `void` + +#### Returns + +() => `boolean` diff --git a/frontend/.typedoc/app/components/Onboarding/eventBus/README.md b/frontend/.typedoc/app/components/Onboarding/eventBus/README.md new file mode 100644 index 00000000..148d3693 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/eventBus/README.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/components/Onboarding/eventBus + +# app/components/Onboarding/eventBus + +## Type Aliases + +- [OnboardingEvent](type-aliases/OnboardingEvent.md) + +## Variables + +- [onboardingBus](variables/onboardingBus.md) diff --git a/frontend/.typedoc/app/components/Onboarding/eventBus/type-aliases/OnboardingEvent.md b/frontend/.typedoc/app/components/Onboarding/eventBus/type-aliases/OnboardingEvent.md new file mode 100644 index 00000000..16e4483a --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/eventBus/type-aliases/OnboardingEvent.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/Onboarding/eventBus](../README.md) / OnboardingEvent + +# Type Alias: OnboardingEvent + +> **OnboardingEvent** = `"browser:spawned"` \| `"browser:navigated"` \| `"settings:closed"` \| `"chat:message_sent"` \| `"app:generation_started"` \| `"app:generation_done"` \| `"skill:installed"` \| `"action:toggled"` \| `"mode:created"` \| `"note:created"` \| `"element_selection:toggled"` \| `"agent:spawned"` \| `"agent:completed"` \| `"agent:attached_to_browser"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/eventBus.ts:3](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/eventBus.ts#L3) diff --git a/frontend/.typedoc/app/components/Onboarding/eventBus/variables/onboardingBus.md b/frontend/.typedoc/app/components/Onboarding/eventBus/variables/onboardingBus.md new file mode 100644 index 00000000..34c6a055 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/eventBus/variables/onboardingBus.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/Onboarding/eventBus](../README.md) / onboardingBus + +# Variable: onboardingBus + +> `const` **onboardingBus**: `OnboardingBus` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/eventBus.ts:87](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/eventBus.ts#L87) diff --git a/frontend/.typedoc/app/components/Onboarding/hooks/useOnboardingProgress/README.md b/frontend/.typedoc/app/components/Onboarding/hooks/useOnboardingProgress/README.md new file mode 100644 index 00000000..6702725c --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/hooks/useOnboardingProgress/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/components/Onboarding/hooks/useOnboardingProgress + +# app/components/Onboarding/hooks/useOnboardingProgress + +## Functions + +- [useOnboardingProgress](functions/useOnboardingProgress.md) diff --git a/frontend/.typedoc/app/components/Onboarding/hooks/useOnboardingProgress/functions/useOnboardingProgress.md b/frontend/.typedoc/app/components/Onboarding/hooks/useOnboardingProgress/functions/useOnboardingProgress.md new file mode 100644 index 00000000..bbcc462b --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/hooks/useOnboardingProgress/functions/useOnboardingProgress.md @@ -0,0 +1,227 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/hooks/useOnboardingProgress](../README.md) / useOnboardingProgress + +# Function: useOnboardingProgress() + +> **useOnboardingProgress**(): `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/hooks/useOnboardingProgress.ts:13](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/hooks/useOnboardingProgress.ts#L13) + +## Returns + +### clearJustCompleted + +> **clearJustCompleted**: () => `object` + +#### Returns + +`object` + +##### payload + +> **payload**: `undefined` + +##### type + +> **type**: `"onboardingProgress/clearJustCompleted"` + +### completedSteps + +> **completedSteps**: `string`[] + +### currentStepId + +> **currentStepId**: `string` \| `null` + +### disableSkipIf + +> **disableSkipIf**: `boolean` + +True after explicit restart-from-Settings; suppresses skipIf so the tour feels fresh. + +### dismissedAt + +> **dismissedAt**: `number` \| `null` + +### initialized + +> **initialized**: `boolean` + +Set on first-launch detection so we don't re-init defaults on every mount. + +### justCompletedStepId + +> **justCompletedStepId**: `string` \| `null` + +Brief celebration marker; clearJustCompleted clears it ~1.5s after the animation. + +### markCompleted + +> **markCompleted**: (`id`) => `object` + +#### Parameters + +##### id + +`string` + +#### Returns + +`object` + +##### payload + +> **payload**: `string` + +##### type + +> **type**: `"onboardingProgress/markStepCompleted"` + +### panelMode + +> **panelMode**: [`PanelMode`](../../../../../../shared/state/onboardingProgressSlice/type-aliases/PanelMode.md) + +### perStepState + +> **perStepState**: `Record`\<`string`, [`PerStepState`](../../../../../../shared/state/onboardingProgressSlice/interfaces/PerStepState.md)\> + +### recordMultiChoice + +> **recordMultiChoice**: (`stepId`, `opId`, `answerId`) => `object` + +#### Parameters + +##### stepId + +`string` + +##### opId + +`string` + +##### answerId + +`string` + +#### Returns + +`object` + +##### payload + +> **payload**: `object` + +###### payload.answerId + +> **answerId**: `string` + +###### payload.opId + +> **opId**: `string` + +###### payload.stepId + +> **stepId**: `string` + +##### type + +> **type**: `"onboardingProgress/recordMultiChoice"` + +### resetTour + +> **resetTour**: () => `object` + +#### Returns + +`object` + +##### payload + +> **payload**: `undefined` + +##### type + +> **type**: `"onboardingProgress/resetTour"` + +### running + +> **running**: `boolean` + +Runtime-only; true while AC is executing a step's ops. + +### setCurrentStep + +> **setCurrentStep**: (`id`) => `object` + +#### Parameters + +##### id + +`string` \| `null` + +#### Returns + +`object` + +##### payload + +> **payload**: `string` \| `null` + +##### type + +> **type**: `"onboardingProgress/setCurrentStep"` + +### setPanelMode + +> **setPanelMode**: (`m`) => `object` + +#### Parameters + +##### m + +[`PanelMode`](../../../../../../shared/state/onboardingProgressSlice/type-aliases/PanelMode.md) + +#### Returns + +`object` + +##### payload + +> **payload**: [`PanelMode`](../../../../../../shared/state/onboardingProgressSlice/type-aliases/PanelMode.md) + +##### type + +> **type**: `"onboardingProgress/setPanelMode"` + +### setRunning + +> **setRunning**: (`running`) => `object` + +#### Parameters + +##### running + +`boolean` + +#### Returns + +`object` + +##### payload + +> **payload**: `boolean` + +##### type + +> **type**: `"onboardingProgress/setRunning"` + +### startedAt + +> **startedAt**: `number` + +### version + +> **version**: `2` diff --git a/frontend/.typedoc/app/components/Onboarding/selectors/README.md b/frontend/.typedoc/app/components/Onboarding/selectors/README.md new file mode 100644 index 00000000..b5191578 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/selectors/README.md @@ -0,0 +1,20 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/components/Onboarding/selectors + +# app/components/Onboarding/selectors + +## Type Aliases + +- [SelectorKey](type-aliases/SelectorKey.md) + +## Variables + +- [S](variables/S.md) + +## Functions + +- [resolveSelector](functions/resolveSelector.md) +- [waitForSelector](functions/waitForSelector.md) diff --git a/frontend/.typedoc/app/components/Onboarding/selectors/functions/resolveSelector.md b/frontend/.typedoc/app/components/Onboarding/selectors/functions/resolveSelector.md new file mode 100644 index 00000000..e988c98b --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/selectors/functions/resolveSelector.md @@ -0,0 +1,23 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/Onboarding/selectors](../README.md) / resolveSelector + +# Function: resolveSelector() + +> **resolveSelector**(`target`): `HTMLElement` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/selectors.ts:69](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/selectors.ts#L69) + +Resolve a selector to a DOM node; per-agent selectors pick the newest spawn. + +## Parameters + +### target + +`string` + +## Returns + +`HTMLElement` \| `null` diff --git a/frontend/.typedoc/app/components/Onboarding/selectors/functions/waitForSelector.md b/frontend/.typedoc/app/components/Onboarding/selectors/functions/waitForSelector.md new file mode 100644 index 00000000..78238761 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/selectors/functions/waitForSelector.md @@ -0,0 +1,27 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/Onboarding/selectors](../README.md) / waitForSelector + +# Function: waitForSelector() + +> **waitForSelector**(`target`, `timeoutMs?`): `Promise`\<`HTMLElement`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/selectors.ts:133](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/selectors.ts#L133) + +Resolve when target mounts; 15s default to ride out heavy main-thread load on /apps/new. + +## Parameters + +### target + +`string` + +### timeoutMs? + +`number` = `15000` + +## Returns + +`Promise`\<`HTMLElement`\> diff --git a/frontend/.typedoc/app/components/Onboarding/selectors/type-aliases/SelectorKey.md b/frontend/.typedoc/app/components/Onboarding/selectors/type-aliases/SelectorKey.md new file mode 100644 index 00000000..aad4be4c --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/selectors/type-aliases/SelectorKey.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/Onboarding/selectors](../README.md) / SelectorKey + +# Type Alias: SelectorKey + +> **SelectorKey** = *typeof* [`S`](../variables/S.md)\[keyof *typeof* [`S`](../variables/S.md)\] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/selectors.ts:59](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/selectors.ts#L59) diff --git a/frontend/.typedoc/app/components/Onboarding/selectors/variables/S.md b/frontend/.typedoc/app/components/Onboarding/selectors/variables/S.md new file mode 100644 index 00000000..b8bee4fd --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/selectors/variables/S.md @@ -0,0 +1,173 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/Onboarding/selectors](../README.md) / S + +# Variable: S + +> `const` **S**: `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/selectors.ts:3](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/selectors.ts#L3) + +## Type Declaration + +### actionsPermissionToggle + +> `readonly` **actionsPermissionToggle**: `"actions-permission-toggle"` = `'actions-permission-toggle'` + +### actionsRedditChevron + +> `readonly` **actionsRedditChevron**: `"actions-reddit-chevron"` = `'actions-reddit-chevron'` + +### actionsRedditToggle + +> `readonly` **actionsRedditToggle**: `"actions-reddit-toggle"` = `'actions-reddit-toggle'` + +### actionsSubredditsChevron + +> `readonly` **actionsSubredditsChevron**: `"actions-subreddits-chevron"` = `'actions-subreddits-chevron'` + +### actionsYoutubeChevron + +> `readonly` **actionsYoutubeChevron**: `"actions-youtube-chevron"` = `'actions-youtube-chevron'` + +### actionsYoutubeToggle + +> `readonly` **actionsYoutubeToggle**: `"actions-youtube-toggle"` = `'actions-youtube-toggle'` + +### agentCard + +> `readonly` **agentCard**: `"agent-card"` = `'agent-card'` + +Matched via data-select-type as fallback. + +### appCardLatest + +> `readonly` **appCardLatest**: `"app-card-latest"` = `'app-card-latest'` + +### appsNewButton + +> `readonly` **appsNewButton**: `"apps-new-button"` = `'apps-new-button'` + +### browserButton + +> `readonly` **browserButton**: `"browser-button"` = `'browser-button'` + +### browserUrlBar + +> `readonly` **browserUrlBar**: `"browser-url-bar"` = `'browser-url-bar'` + +### canvasControls + +> `readonly` **canvasControls**: `"canvas-controls"` = `'canvas-controls'` + +### canvasFitToView + +> `readonly` **canvasFitToView**: `"canvas-fit-to-view"` = `'canvas-fit-to-view'` + +### canvasMinimapToggle + +> `readonly` **canvasMinimapToggle**: `"canvas-minimap-toggle"` = `'canvas-minimap-toggle'` + +### canvasTidyLayout + +> `readonly` **canvasTidyLayout**: `"canvas-tidy-layout"` = `'canvas-tidy-layout'` + +### chatInput + +> `readonly` **chatInput**: `"chat-input"` = `'chat-input'` + +### chatSendButton + +> `readonly` **chatSendButton**: `"chat-send-button"` = `'chat-send-button'` + +### dashboardRowFirst + +> `readonly` **dashboardRowFirst**: `"dashboard-row-first"` = `'dashboard-row-first'` + +First row in Dashboards section; "click into a dashboard" hop targets this. + +### dashboardToolbarApps + +> `readonly` **dashboardToolbarApps**: `"dashboard-toolbar-apps"` = `'dashboard-toolbar-apps'` + +### elementSelectionToggle + +> `readonly` **elementSelectionToggle**: `"element-selection-toggle"` = `'element-selection-toggle'` + +### newAgentButton + +> `readonly` **newAgentButton**: `"new-agent-button"` = `'new-agent-button'` + +### settingsApiKeys + +> `readonly` **settingsApiKeys**: `"settings-api-keys"` = `'settings-api-keys'` + +### settingsCloseButton + +> `readonly` **settingsCloseButton**: `"settings-close-button"` = `'settings-close-button'` + +### settingsExternalSubs + +> `readonly` **settingsExternalSubs**: `"settings-external-subs"` = `'settings-external-subs'` + +### settingsModelsTab + +> `readonly` **settingsModelsTab**: `"settings-models-tab"` = `'settings-models-tab'` + +### settingsProSection + +> `readonly` **settingsProSection**: `"settings-pro-section"` = `'settings-pro-section'` + +### settingsRestartTour + +> `readonly` **settingsRestartTour**: `"settings-restart-tour"` = `'settings-restart-tour'` + +### sidebarActions + +> `readonly` **sidebarActions**: `"sidebar-actions"` = `'sidebar-actions'` + +### sidebarApps + +> `readonly` **sidebarApps**: `"sidebar-apps"` = `'sidebar-apps'` + +### sidebarCustomization + +> `readonly` **sidebarCustomization**: `"sidebar-customization"` = `'sidebar-customization'` + +Header for sidebar's Customization section; runtime auto-expands before targeting children. + +### sidebarDashboards + +> `readonly` **sidebarDashboards**: `"sidebar-dashboards"` = `'sidebar-dashboards'` + +### sidebarModes + +> `readonly` **sidebarModes**: `"sidebar-modes"` = `'sidebar-modes'` + +### sidebarSettingsButton + +> `readonly` **sidebarSettingsButton**: `"sidebar-settings-button"` = `'sidebar-settings-button'` + +### sidebarSkills + +> `readonly` **sidebarSkills**: `"sidebar-skills"` = `'sidebar-skills'` + +### sidebarToggle + +> `readonly` **sidebarToggle**: `"sidebar-toggle"` = `'sidebar-toggle'` + +Top-bar ViewSidebar toggle; aria-expanded drives the expand-sidebar preflight. + +### skillBuilderFab + +> `readonly` **skillBuilderFab**: `"skill-builder-fab"` = `'skill-builder-fab'` + +### skillInstallButton + +> `readonly` **skillInstallButton**: `"skill-install-button"` = `'skill-install-button'` + +### skillItemPdf + +> `readonly` **skillItemPdf**: `"skill-item-pdf"` = `'skill-item-pdf'` diff --git a/frontend/.typedoc/app/components/Onboarding/steps/README.md b/frontend/.typedoc/app/components/Onboarding/steps/README.md new file mode 100644 index 00000000..71ecf97f --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/README.md @@ -0,0 +1,16 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/components/Onboarding/steps + +# app/components/Onboarding/steps + +## Variables + +- [STAGE\_GROUPS](variables/STAGE_GROUPS.md) +- [STEPS](variables/STEPS.md) + +## Functions + +- [findStepById](functions/findStepById.md) diff --git a/frontend/.typedoc/app/components/Onboarding/steps/functions/findStepById.md b/frontend/.typedoc/app/components/Onboarding/steps/functions/findStepById.md new file mode 100644 index 00000000..a2888182 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/functions/findStepById.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/Onboarding/steps](../README.md) / findStepById + +# Function: findStepById() + +> **findStepById**(`id`): [`OnboardingStep`](../types/interfaces/OnboardingStep.md) \| `undefined` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/index.ts:25](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/index.ts#L25) + +## Parameters + +### id + +`string` + +## Returns + +[`OnboardingStep`](../types/interfaces/OnboardingStep.md) \| `undefined` diff --git a/frontend/.typedoc/app/components/Onboarding/steps/skipPredicates/README.md b/frontend/.typedoc/app/components/Onboarding/steps/skipPredicates/README.md new file mode 100644 index 00000000..b7bedfaf --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/skipPredicates/README.md @@ -0,0 +1,19 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/components/Onboarding/steps/skipPredicates + +# app/components/Onboarding/steps/skipPredicates + +## Functions + +- [freeRunsLow](functions/freeRunsLow.md) +- [hasAnyAgentLaunched](functions/hasAnyAgentLaunched.md) +- [hasAnyBrowserSpawned](functions/hasAnyBrowserSpawned.md) +- [hasAnySkillInstalled](functions/hasAnySkillInstalled.md) +- [hasAnyToolEnabled](functions/hasAnyToolEnabled.md) +- [hasFreeTrialActive](functions/hasFreeTrialActive.md) +- [hasModelConnected](functions/hasModelConnected.md) +- [hasPdfSkillInstalled](functions/hasPdfSkillInstalled.md) +- [isYoutubeEnabled](functions/isYoutubeEnabled.md) diff --git a/frontend/.typedoc/app/components/Onboarding/steps/skipPredicates/functions/freeRunsLow.md b/frontend/.typedoc/app/components/Onboarding/steps/skipPredicates/functions/freeRunsLow.md new file mode 100644 index 00000000..751d3df0 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/skipPredicates/functions/freeRunsLow.md @@ -0,0 +1,89 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/steps/skipPredicates](../README.md) / freeRunsLow + +# Function: freeRunsLow() + +> **freeRunsLow**(`s`): `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/skipPredicates.ts:36](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/skipPredicates.ts#L36) + +True when free runs are running out (or already armed-and-spent). Surfaces the connect-model step. + +## Parameters + +### s + +#### agents + +`AgentsState` = `agentsReducer` + +#### dashboardLayout + +[`DashboardLayoutState`](../../../../../../shared/state/dashboardLayoutSlice/interfaces/DashboardLayoutState.md) = `dashboardLayoutReducer` + +#### dashboards + +`DashboardsState` = `dashboardsReducer` + +#### interaction + +`InteractionState` = `interactionReducer` + +#### mcpRegistry + +`McpRegistryState` = `mcpRegistryReducer` + +#### models + +`ModelsState` = `modelsReducer` + +#### modes + +`ModesState` = `modesReducer` + +#### onboardingProgress + +[`OnboardingProgressState`](../../../../../../shared/state/onboardingProgressSlice/interfaces/OnboardingProgressState.md) = `onboardingProgressReducer` + +#### outputs + +`OutputsState` = `outputsReducer` + +#### settings + +`SettingsState` = `settingsReducer` + +#### skillRegistry + +`SkillRegistryState` = `skillRegistryReducer` + +#### skills + +`SkillsState` = `skillsReducer` + +#### streaming + +`StreamingState` = `streamingReducer` + +#### subscriptions + +[`SubscriptionsState`](../../../../../../shared/state/subscriptionsSlice/interfaces/SubscriptionsState.md) = `subscriptionsReducer` + +#### tempState + +`TempState` = `tempStateReducer` + +#### tools + +`ToolsState` = `toolsReducer` + +#### update + +`UpdateState` = `updateReducer` + +## Returns + +`boolean` diff --git a/frontend/.typedoc/app/components/Onboarding/steps/skipPredicates/functions/hasAnyAgentLaunched.md b/frontend/.typedoc/app/components/Onboarding/steps/skipPredicates/functions/hasAnyAgentLaunched.md new file mode 100644 index 00000000..b371f7a7 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/skipPredicates/functions/hasAnyAgentLaunched.md @@ -0,0 +1,87 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/steps/skipPredicates](../README.md) / hasAnyAgentLaunched + +# Function: hasAnyAgentLaunched() + +> **hasAnyAgentLaunched**(`s`): `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/skipPredicates.ts:60](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/skipPredicates.ts#L60) + +## Parameters + +### s + +#### agents + +`AgentsState` = `agentsReducer` + +#### dashboardLayout + +[`DashboardLayoutState`](../../../../../../shared/state/dashboardLayoutSlice/interfaces/DashboardLayoutState.md) = `dashboardLayoutReducer` + +#### dashboards + +`DashboardsState` = `dashboardsReducer` + +#### interaction + +`InteractionState` = `interactionReducer` + +#### mcpRegistry + +`McpRegistryState` = `mcpRegistryReducer` + +#### models + +`ModelsState` = `modelsReducer` + +#### modes + +`ModesState` = `modesReducer` + +#### onboardingProgress + +[`OnboardingProgressState`](../../../../../../shared/state/onboardingProgressSlice/interfaces/OnboardingProgressState.md) = `onboardingProgressReducer` + +#### outputs + +`OutputsState` = `outputsReducer` + +#### settings + +`SettingsState` = `settingsReducer` + +#### skillRegistry + +`SkillRegistryState` = `skillRegistryReducer` + +#### skills + +`SkillsState` = `skillsReducer` + +#### streaming + +`StreamingState` = `streamingReducer` + +#### subscriptions + +[`SubscriptionsState`](../../../../../../shared/state/subscriptionsSlice/interfaces/SubscriptionsState.md) = `subscriptionsReducer` + +#### tempState + +`TempState` = `tempStateReducer` + +#### tools + +`ToolsState` = `toolsReducer` + +#### update + +`UpdateState` = `updateReducer` + +## Returns + +`boolean` diff --git a/frontend/.typedoc/app/components/Onboarding/steps/skipPredicates/functions/hasAnyBrowserSpawned.md b/frontend/.typedoc/app/components/Onboarding/steps/skipPredicates/functions/hasAnyBrowserSpawned.md new file mode 100644 index 00000000..53eb7608 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/skipPredicates/functions/hasAnyBrowserSpawned.md @@ -0,0 +1,89 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/steps/skipPredicates](../README.md) / hasAnyBrowserSpawned + +# Function: hasAnyBrowserSpawned() + +> **hasAnyBrowserSpawned**(`s`): `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/skipPredicates.ts:84](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/skipPredicates.ts#L84) + +True if a browser card exists; step 4 auto-skips the open-a-browser walkthrough. + +## Parameters + +### s + +#### agents + +`AgentsState` = `agentsReducer` + +#### dashboardLayout + +[`DashboardLayoutState`](../../../../../../shared/state/dashboardLayoutSlice/interfaces/DashboardLayoutState.md) = `dashboardLayoutReducer` + +#### dashboards + +`DashboardsState` = `dashboardsReducer` + +#### interaction + +`InteractionState` = `interactionReducer` + +#### mcpRegistry + +`McpRegistryState` = `mcpRegistryReducer` + +#### models + +`ModelsState` = `modelsReducer` + +#### modes + +`ModesState` = `modesReducer` + +#### onboardingProgress + +[`OnboardingProgressState`](../../../../../../shared/state/onboardingProgressSlice/interfaces/OnboardingProgressState.md) = `onboardingProgressReducer` + +#### outputs + +`OutputsState` = `outputsReducer` + +#### settings + +`SettingsState` = `settingsReducer` + +#### skillRegistry + +`SkillRegistryState` = `skillRegistryReducer` + +#### skills + +`SkillsState` = `skillsReducer` + +#### streaming + +`StreamingState` = `streamingReducer` + +#### subscriptions + +[`SubscriptionsState`](../../../../../../shared/state/subscriptionsSlice/interfaces/SubscriptionsState.md) = `subscriptionsReducer` + +#### tempState + +`TempState` = `tempStateReducer` + +#### tools + +`ToolsState` = `toolsReducer` + +#### update + +`UpdateState` = `updateReducer` + +## Returns + +`boolean` diff --git a/frontend/.typedoc/app/components/Onboarding/steps/skipPredicates/functions/hasAnySkillInstalled.md b/frontend/.typedoc/app/components/Onboarding/steps/skipPredicates/functions/hasAnySkillInstalled.md new file mode 100644 index 00000000..f3e007c8 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/skipPredicates/functions/hasAnySkillInstalled.md @@ -0,0 +1,87 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/steps/skipPredicates](../README.md) / hasAnySkillInstalled + +# Function: hasAnySkillInstalled() + +> **hasAnySkillInstalled**(`s`): `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/skipPredicates.ts:65](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/skipPredicates.ts#L65) + +## Parameters + +### s + +#### agents + +`AgentsState` = `agentsReducer` + +#### dashboardLayout + +[`DashboardLayoutState`](../../../../../../shared/state/dashboardLayoutSlice/interfaces/DashboardLayoutState.md) = `dashboardLayoutReducer` + +#### dashboards + +`DashboardsState` = `dashboardsReducer` + +#### interaction + +`InteractionState` = `interactionReducer` + +#### mcpRegistry + +`McpRegistryState` = `mcpRegistryReducer` + +#### models + +`ModelsState` = `modelsReducer` + +#### modes + +`ModesState` = `modesReducer` + +#### onboardingProgress + +[`OnboardingProgressState`](../../../../../../shared/state/onboardingProgressSlice/interfaces/OnboardingProgressState.md) = `onboardingProgressReducer` + +#### outputs + +`OutputsState` = `outputsReducer` + +#### settings + +`SettingsState` = `settingsReducer` + +#### skillRegistry + +`SkillRegistryState` = `skillRegistryReducer` + +#### skills + +`SkillsState` = `skillsReducer` + +#### streaming + +`StreamingState` = `streamingReducer` + +#### subscriptions + +[`SubscriptionsState`](../../../../../../shared/state/subscriptionsSlice/interfaces/SubscriptionsState.md) = `subscriptionsReducer` + +#### tempState + +`TempState` = `tempStateReducer` + +#### tools + +`ToolsState` = `toolsReducer` + +#### update + +`UpdateState` = `updateReducer` + +## Returns + +`boolean` diff --git a/frontend/.typedoc/app/components/Onboarding/steps/skipPredicates/functions/hasAnyToolEnabled.md b/frontend/.typedoc/app/components/Onboarding/steps/skipPredicates/functions/hasAnyToolEnabled.md new file mode 100644 index 00000000..57c6cea7 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/skipPredicates/functions/hasAnyToolEnabled.md @@ -0,0 +1,87 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/steps/skipPredicates](../README.md) / hasAnyToolEnabled + +# Function: hasAnyToolEnabled() + +> **hasAnyToolEnabled**(`s`): `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/skipPredicates.ts:43](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/skipPredicates.ts#L43) + +## Parameters + +### s + +#### agents + +`AgentsState` = `agentsReducer` + +#### dashboardLayout + +[`DashboardLayoutState`](../../../../../../shared/state/dashboardLayoutSlice/interfaces/DashboardLayoutState.md) = `dashboardLayoutReducer` + +#### dashboards + +`DashboardsState` = `dashboardsReducer` + +#### interaction + +`InteractionState` = `interactionReducer` + +#### mcpRegistry + +`McpRegistryState` = `mcpRegistryReducer` + +#### models + +`ModelsState` = `modelsReducer` + +#### modes + +`ModesState` = `modesReducer` + +#### onboardingProgress + +[`OnboardingProgressState`](../../../../../../shared/state/onboardingProgressSlice/interfaces/OnboardingProgressState.md) = `onboardingProgressReducer` + +#### outputs + +`OutputsState` = `outputsReducer` + +#### settings + +`SettingsState` = `settingsReducer` + +#### skillRegistry + +`SkillRegistryState` = `skillRegistryReducer` + +#### skills + +`SkillsState` = `skillsReducer` + +#### streaming + +`StreamingState` = `streamingReducer` + +#### subscriptions + +[`SubscriptionsState`](../../../../../../shared/state/subscriptionsSlice/interfaces/SubscriptionsState.md) = `subscriptionsReducer` + +#### tempState + +`TempState` = `tempStateReducer` + +#### tools + +`ToolsState` = `toolsReducer` + +#### update + +`UpdateState` = `updateReducer` + +## Returns + +`boolean` diff --git a/frontend/.typedoc/app/components/Onboarding/steps/skipPredicates/functions/hasFreeTrialActive.md b/frontend/.typedoc/app/components/Onboarding/steps/skipPredicates/functions/hasFreeTrialActive.md new file mode 100644 index 00000000..e8b07bfa --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/skipPredicates/functions/hasFreeTrialActive.md @@ -0,0 +1,89 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/steps/skipPredicates](../README.md) / hasFreeTrialActive + +# Function: hasFreeTrialActive() + +> **hasFreeTrialActive**(`s`): `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/skipPredicates.ts:30](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/skipPredicates.ts#L30) + +True while the server-funded free trial is armed (no key needed yet). + +## Parameters + +### s + +#### agents + +`AgentsState` = `agentsReducer` + +#### dashboardLayout + +[`DashboardLayoutState`](../../../../../../shared/state/dashboardLayoutSlice/interfaces/DashboardLayoutState.md) = `dashboardLayoutReducer` + +#### dashboards + +`DashboardsState` = `dashboardsReducer` + +#### interaction + +`InteractionState` = `interactionReducer` + +#### mcpRegistry + +`McpRegistryState` = `mcpRegistryReducer` + +#### models + +`ModelsState` = `modelsReducer` + +#### modes + +`ModesState` = `modesReducer` + +#### onboardingProgress + +[`OnboardingProgressState`](../../../../../../shared/state/onboardingProgressSlice/interfaces/OnboardingProgressState.md) = `onboardingProgressReducer` + +#### outputs + +`OutputsState` = `outputsReducer` + +#### settings + +`SettingsState` = `settingsReducer` + +#### skillRegistry + +`SkillRegistryState` = `skillRegistryReducer` + +#### skills + +`SkillsState` = `skillsReducer` + +#### streaming + +`StreamingState` = `streamingReducer` + +#### subscriptions + +[`SubscriptionsState`](../../../../../../shared/state/subscriptionsSlice/interfaces/SubscriptionsState.md) = `subscriptionsReducer` + +#### tempState + +`TempState` = `tempStateReducer` + +#### tools + +`ToolsState` = `toolsReducer` + +#### update + +`UpdateState` = `updateReducer` + +## Returns + +`boolean` diff --git a/frontend/.typedoc/app/components/Onboarding/steps/skipPredicates/functions/hasModelConnected.md b/frontend/.typedoc/app/components/Onboarding/steps/skipPredicates/functions/hasModelConnected.md new file mode 100644 index 00000000..868a74a7 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/skipPredicates/functions/hasModelConnected.md @@ -0,0 +1,87 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/steps/skipPredicates](../README.md) / hasModelConnected + +# Function: hasModelConnected() + +> **hasModelConnected**(`s`): `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/skipPredicates.ts:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/skipPredicates.ts#L8) + +## Parameters + +### s + +#### agents + +`AgentsState` = `agentsReducer` + +#### dashboardLayout + +[`DashboardLayoutState`](../../../../../../shared/state/dashboardLayoutSlice/interfaces/DashboardLayoutState.md) = `dashboardLayoutReducer` + +#### dashboards + +`DashboardsState` = `dashboardsReducer` + +#### interaction + +`InteractionState` = `interactionReducer` + +#### mcpRegistry + +`McpRegistryState` = `mcpRegistryReducer` + +#### models + +`ModelsState` = `modelsReducer` + +#### modes + +`ModesState` = `modesReducer` + +#### onboardingProgress + +[`OnboardingProgressState`](../../../../../../shared/state/onboardingProgressSlice/interfaces/OnboardingProgressState.md) = `onboardingProgressReducer` + +#### outputs + +`OutputsState` = `outputsReducer` + +#### settings + +`SettingsState` = `settingsReducer` + +#### skillRegistry + +`SkillRegistryState` = `skillRegistryReducer` + +#### skills + +`SkillsState` = `skillsReducer` + +#### streaming + +`StreamingState` = `streamingReducer` + +#### subscriptions + +[`SubscriptionsState`](../../../../../../shared/state/subscriptionsSlice/interfaces/SubscriptionsState.md) = `subscriptionsReducer` + +#### tempState + +`TempState` = `tempStateReducer` + +#### tools + +`ToolsState` = `toolsReducer` + +#### update + +`UpdateState` = `updateReducer` + +## Returns + +`boolean` diff --git a/frontend/.typedoc/app/components/Onboarding/steps/skipPredicates/functions/hasPdfSkillInstalled.md b/frontend/.typedoc/app/components/Onboarding/steps/skipPredicates/functions/hasPdfSkillInstalled.md new file mode 100644 index 00000000..33b30e4d --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/skipPredicates/functions/hasPdfSkillInstalled.md @@ -0,0 +1,89 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/steps/skipPredicates](../README.md) / hasPdfSkillInstalled + +# Function: hasPdfSkillInstalled() + +> **hasPdfSkillInstalled**(`s`): `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/skipPredicates.ts:72](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/skipPredicates.ts#L72) + +True if PDF skill installed (id/name/command); step 7 uses this so other skills don't auto-skip. + +## Parameters + +### s + +#### agents + +`AgentsState` = `agentsReducer` + +#### dashboardLayout + +[`DashboardLayoutState`](../../../../../../shared/state/dashboardLayoutSlice/interfaces/DashboardLayoutState.md) = `dashboardLayoutReducer` + +#### dashboards + +`DashboardsState` = `dashboardsReducer` + +#### interaction + +`InteractionState` = `interactionReducer` + +#### mcpRegistry + +`McpRegistryState` = `mcpRegistryReducer` + +#### models + +`ModelsState` = `modelsReducer` + +#### modes + +`ModesState` = `modesReducer` + +#### onboardingProgress + +[`OnboardingProgressState`](../../../../../../shared/state/onboardingProgressSlice/interfaces/OnboardingProgressState.md) = `onboardingProgressReducer` + +#### outputs + +`OutputsState` = `outputsReducer` + +#### settings + +`SettingsState` = `settingsReducer` + +#### skillRegistry + +`SkillRegistryState` = `skillRegistryReducer` + +#### skills + +`SkillsState` = `skillsReducer` + +#### streaming + +`StreamingState` = `streamingReducer` + +#### subscriptions + +[`SubscriptionsState`](../../../../../../shared/state/subscriptionsSlice/interfaces/SubscriptionsState.md) = `subscriptionsReducer` + +#### tempState + +`TempState` = `tempStateReducer` + +#### tools + +`ToolsState` = `toolsReducer` + +#### update + +`UpdateState` = `updateReducer` + +## Returns + +`boolean` diff --git a/frontend/.typedoc/app/components/Onboarding/steps/skipPredicates/functions/isYoutubeEnabled.md b/frontend/.typedoc/app/components/Onboarding/steps/skipPredicates/functions/isYoutubeEnabled.md new file mode 100644 index 00000000..f966be15 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/skipPredicates/functions/isYoutubeEnabled.md @@ -0,0 +1,89 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/steps/skipPredicates](../README.md) / isYoutubeEnabled + +# Function: isYoutubeEnabled() + +> **isYoutubeEnabled**(`s`): `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/skipPredicates.ts:50](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/skipPredicates.ts#L50) + +True when a YouTube-shaped tool is on; step 2 waits on this so toggle-flapping stays in sync. + +## Parameters + +### s + +#### agents + +`AgentsState` = `agentsReducer` + +#### dashboardLayout + +[`DashboardLayoutState`](../../../../../../shared/state/dashboardLayoutSlice/interfaces/DashboardLayoutState.md) = `dashboardLayoutReducer` + +#### dashboards + +`DashboardsState` = `dashboardsReducer` + +#### interaction + +`InteractionState` = `interactionReducer` + +#### mcpRegistry + +`McpRegistryState` = `mcpRegistryReducer` + +#### models + +`ModelsState` = `modelsReducer` + +#### modes + +`ModesState` = `modesReducer` + +#### onboardingProgress + +[`OnboardingProgressState`](../../../../../../shared/state/onboardingProgressSlice/interfaces/OnboardingProgressState.md) = `onboardingProgressReducer` + +#### outputs + +`OutputsState` = `outputsReducer` + +#### settings + +`SettingsState` = `settingsReducer` + +#### skillRegistry + +`SkillRegistryState` = `skillRegistryReducer` + +#### skills + +`SkillsState` = `skillsReducer` + +#### streaming + +`StreamingState` = `streamingReducer` + +#### subscriptions + +[`SubscriptionsState`](../../../../../../shared/state/subscriptionsSlice/interfaces/SubscriptionsState.md) = `subscriptionsReducer` + +#### tempState + +`TempState` = `tempStateReducer` + +#### tools + +`ToolsState` = `toolsReducer` + +#### update + +`UpdateState` = `updateReducer` + +## Returns + +`boolean` diff --git a/frontend/.typedoc/app/components/Onboarding/steps/step01_connectModel/README.md b/frontend/.typedoc/app/components/Onboarding/steps/step01_connectModel/README.md new file mode 100644 index 00000000..601d0d74 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/step01_connectModel/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/components/Onboarding/steps/step01\_connectModel + +# app/components/Onboarding/steps/step01\_connectModel + +## Variables + +- [step01](variables/step01.md) diff --git a/frontend/.typedoc/app/components/Onboarding/steps/step01_connectModel/variables/step01.md b/frontend/.typedoc/app/components/Onboarding/steps/step01_connectModel/variables/step01.md new file mode 100644 index 00000000..5776e1a3 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/step01_connectModel/variables/step01.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/steps/step01\_connectModel](../README.md) / step01 + +# Variable: step01 + +> `const` **step01**: [`OnboardingStep`](../../types/interfaces/OnboardingStep.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/step01\_connectModel.ts:5](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/step01_connectModel.ts#L5) diff --git a/frontend/.typedoc/app/components/Onboarding/steps/step02_enableActions/README.md b/frontend/.typedoc/app/components/Onboarding/steps/step02_enableActions/README.md new file mode 100644 index 00000000..dd3b3ff4 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/step02_enableActions/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/components/Onboarding/steps/step02\_enableActions + +# app/components/Onboarding/steps/step02\_enableActions + +## Variables + +- [step02](variables/step02.md) diff --git a/frontend/.typedoc/app/components/Onboarding/steps/step02_enableActions/variables/step02.md b/frontend/.typedoc/app/components/Onboarding/steps/step02_enableActions/variables/step02.md new file mode 100644 index 00000000..59835c9a --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/step02_enableActions/variables/step02.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/steps/step02\_enableActions](../README.md) / step02 + +# Variable: step02 + +> `const` **step02**: [`OnboardingStep`](../../types/interfaces/OnboardingStep.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/step02\_enableActions.ts:5](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/step02_enableActions.ts#L5) diff --git a/frontend/.typedoc/app/components/Onboarding/steps/step03_launchAgent/README.md b/frontend/.typedoc/app/components/Onboarding/steps/step03_launchAgent/README.md new file mode 100644 index 00000000..54de658c --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/step03_launchAgent/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/components/Onboarding/steps/step03\_launchAgent + +# app/components/Onboarding/steps/step03\_launchAgent + +## Variables + +- [step03](variables/step03.md) diff --git a/frontend/.typedoc/app/components/Onboarding/steps/step03_launchAgent/variables/step03.md b/frontend/.typedoc/app/components/Onboarding/steps/step03_launchAgent/variables/step03.md new file mode 100644 index 00000000..22545db6 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/step03_launchAgent/variables/step03.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/steps/step03\_launchAgent](../README.md) / step03 + +# Variable: step03 + +> `const` **step03**: [`OnboardingStep`](../../types/interfaces/OnboardingStep.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/step03\_launchAgent.ts:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/step03_launchAgent.ts#L11) diff --git a/frontend/.typedoc/app/components/Onboarding/steps/step04_useBrowser/README.md b/frontend/.typedoc/app/components/Onboarding/steps/step04_useBrowser/README.md new file mode 100644 index 00000000..eb673c18 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/step04_useBrowser/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/components/Onboarding/steps/step04\_useBrowser + +# app/components/Onboarding/steps/step04\_useBrowser + +## Variables + +- [step04](variables/step04.md) diff --git a/frontend/.typedoc/app/components/Onboarding/steps/step04_useBrowser/variables/step04.md b/frontend/.typedoc/app/components/Onboarding/steps/step04_useBrowser/variables/step04.md new file mode 100644 index 00000000..09cd1b9e --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/step04_useBrowser/variables/step04.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/steps/step04\_useBrowser](../README.md) / step04 + +# Variable: step04 + +> `const` **step04**: [`OnboardingStep`](../../types/interfaces/OnboardingStep.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/step04\_useBrowser.ts:5](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/step04_useBrowser.ts#L5) diff --git a/frontend/.typedoc/app/components/Onboarding/steps/step05_agentUseBrowser/README.md b/frontend/.typedoc/app/components/Onboarding/steps/step05_agentUseBrowser/README.md new file mode 100644 index 00000000..35d6ead0 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/step05_agentUseBrowser/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/components/Onboarding/steps/step05\_agentUseBrowser + +# app/components/Onboarding/steps/step05\_agentUseBrowser + +## Variables + +- [step05](variables/step05.md) diff --git a/frontend/.typedoc/app/components/Onboarding/steps/step05_agentUseBrowser/variables/step05.md b/frontend/.typedoc/app/components/Onboarding/steps/step05_agentUseBrowser/variables/step05.md new file mode 100644 index 00000000..1bf36977 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/step05_agentUseBrowser/variables/step05.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/steps/step05\_agentUseBrowser](../README.md) / step05 + +# Variable: step05 + +> `const` **step05**: [`OnboardingStep`](../../types/interfaces/OnboardingStep.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/step05\_agentUseBrowser.ts:4](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/step05_agentUseBrowser.ts#L4) diff --git a/frontend/.typedoc/app/components/Onboarding/steps/step06_agentControlAgents/README.md b/frontend/.typedoc/app/components/Onboarding/steps/step06_agentControlAgents/README.md new file mode 100644 index 00000000..139e398c --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/step06_agentControlAgents/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/components/Onboarding/steps/step06\_agentControlAgents + +# app/components/Onboarding/steps/step06\_agentControlAgents + +## Variables + +- [step06](variables/step06.md) diff --git a/frontend/.typedoc/app/components/Onboarding/steps/step06_agentControlAgents/variables/step06.md b/frontend/.typedoc/app/components/Onboarding/steps/step06_agentControlAgents/variables/step06.md new file mode 100644 index 00000000..1fd10727 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/step06_agentControlAgents/variables/step06.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/steps/step06\_agentControlAgents](../README.md) / step06 + +# Variable: step06 + +> `const` **step06**: [`OnboardingStep`](../../types/interfaces/OnboardingStep.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/step06\_agentControlAgents.ts:4](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/step06_agentControlAgents.ts#L4) diff --git a/frontend/.typedoc/app/components/Onboarding/steps/step07_installSkill/README.md b/frontend/.typedoc/app/components/Onboarding/steps/step07_installSkill/README.md new file mode 100644 index 00000000..4e60ae15 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/step07_installSkill/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/components/Onboarding/steps/step07\_installSkill + +# app/components/Onboarding/steps/step07\_installSkill + +## Variables + +- [step07](variables/step07.md) diff --git a/frontend/.typedoc/app/components/Onboarding/steps/step07_installSkill/variables/step07.md b/frontend/.typedoc/app/components/Onboarding/steps/step07_installSkill/variables/step07.md new file mode 100644 index 00000000..86252a07 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/step07_installSkill/variables/step07.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/steps/step07\_installSkill](../README.md) / step07 + +# Variable: step07 + +> `const` **step07**: [`OnboardingStep`](../../types/interfaces/OnboardingStep.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/step07\_installSkill.ts:5](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/step07_installSkill.ts#L5) diff --git a/frontend/.typedoc/app/components/Onboarding/steps/step08_makeApp/README.md b/frontend/.typedoc/app/components/Onboarding/steps/step08_makeApp/README.md new file mode 100644 index 00000000..b826aa6c --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/step08_makeApp/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/components/Onboarding/steps/step08\_makeApp + +# app/components/Onboarding/steps/step08\_makeApp + +## Variables + +- [step08](variables/step08.md) diff --git a/frontend/.typedoc/app/components/Onboarding/steps/step08_makeApp/variables/step08.md b/frontend/.typedoc/app/components/Onboarding/steps/step08_makeApp/variables/step08.md new file mode 100644 index 00000000..b5914872 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/step08_makeApp/variables/step08.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/steps/step08\_makeApp](../README.md) / step08 + +# Variable: step08 + +> `const` **step08**: [`OnboardingStep`](../../types/interfaces/OnboardingStep.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/step08\_makeApp.ts:4](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/step08_makeApp.ts#L4) diff --git a/frontend/.typedoc/app/components/Onboarding/steps/stepUnlock/README.md b/frontend/.typedoc/app/components/Onboarding/steps/stepUnlock/README.md new file mode 100644 index 00000000..c4bb4368 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/stepUnlock/README.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/components/Onboarding/steps/stepUnlock + +# app/components/Onboarding/steps/stepUnlock + +## Functions + +- [isStepUnlocked](functions/isStepUnlocked.md) +- [unlockHintFor](functions/unlockHintFor.md) +- [useUnlockedStepIds](functions/useUnlockedStepIds.md) diff --git a/frontend/.typedoc/app/components/Onboarding/steps/stepUnlock/functions/isStepUnlocked.md b/frontend/.typedoc/app/components/Onboarding/steps/stepUnlock/functions/isStepUnlocked.md new file mode 100644 index 00000000..3e5992ae --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/stepUnlock/functions/isStepUnlocked.md @@ -0,0 +1,91 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/steps/stepUnlock](../README.md) / isStepUnlocked + +# Function: isStepUnlocked() + +> **isStepUnlocked**(`stepId`, `s`): `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/stepUnlock.ts:29](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/stepUnlock.ts#L29) + +## Parameters + +### stepId + +`string` + +### s + +#### agents + +`AgentsState` = `agentsReducer` + +#### dashboardLayout + +[`DashboardLayoutState`](../../../../../../shared/state/dashboardLayoutSlice/interfaces/DashboardLayoutState.md) = `dashboardLayoutReducer` + +#### dashboards + +`DashboardsState` = `dashboardsReducer` + +#### interaction + +`InteractionState` = `interactionReducer` + +#### mcpRegistry + +`McpRegistryState` = `mcpRegistryReducer` + +#### models + +`ModelsState` = `modelsReducer` + +#### modes + +`ModesState` = `modesReducer` + +#### onboardingProgress + +[`OnboardingProgressState`](../../../../../../shared/state/onboardingProgressSlice/interfaces/OnboardingProgressState.md) = `onboardingProgressReducer` + +#### outputs + +`OutputsState` = `outputsReducer` + +#### settings + +`SettingsState` = `settingsReducer` + +#### skillRegistry + +`SkillRegistryState` = `skillRegistryReducer` + +#### skills + +`SkillsState` = `skillsReducer` + +#### streaming + +`StreamingState` = `streamingReducer` + +#### subscriptions + +[`SubscriptionsState`](../../../../../../shared/state/subscriptionsSlice/interfaces/SubscriptionsState.md) = `subscriptionsReducer` + +#### tempState + +`TempState` = `tempStateReducer` + +#### tools + +`ToolsState` = `toolsReducer` + +#### update + +`UpdateState` = `updateReducer` + +## Returns + +`boolean` diff --git a/frontend/.typedoc/app/components/Onboarding/steps/stepUnlock/functions/unlockHintFor.md b/frontend/.typedoc/app/components/Onboarding/steps/stepUnlock/functions/unlockHintFor.md new file mode 100644 index 00000000..47a2b98c --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/stepUnlock/functions/unlockHintFor.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/steps/stepUnlock](../README.md) / unlockHintFor + +# Function: unlockHintFor() + +> **unlockHintFor**(`stepId`): `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/stepUnlock.ts:34](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/stepUnlock.ts#L34) + +## Parameters + +### stepId + +`string` + +## Returns + +`string` \| `null` diff --git a/frontend/.typedoc/app/components/Onboarding/steps/stepUnlock/functions/useUnlockedStepIds.md b/frontend/.typedoc/app/components/Onboarding/steps/stepUnlock/functions/useUnlockedStepIds.md new file mode 100644 index 00000000..53559a42 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/stepUnlock/functions/useUnlockedStepIds.md @@ -0,0 +1,18 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/steps/stepUnlock](../README.md) / useUnlockedStepIds + +# Function: useUnlockedStepIds() + +> **useUnlockedStepIds**(): `Set`\<`string`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/stepUnlock.ts:40](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/stepUnlock.ts#L40) + +Set of currently-unlocked step ids. Keyed on a stable string so the selector + only re-renders when the unlock set actually changes. + +## Returns + +`Set`\<`string`\> diff --git a/frontend/.typedoc/app/components/Onboarding/steps/types/README.md b/frontend/.typedoc/app/components/Onboarding/steps/types/README.md new file mode 100644 index 00000000..ed0bc694 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/types/README.md @@ -0,0 +1,24 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/components/Onboarding/steps/types + +# app/components/Onboarding/steps/types + +## Interfaces + +- [OnboardingStep](interfaces/OnboardingStep.md) +- [StepDependency](interfaces/StepDependency.md) + +## Type Aliases + +- [ACMultiChoiceOption](type-aliases/ACMultiChoiceOption.md) +- [ACOp](type-aliases/ACOp.md) +- [AdvanceCondition](type-aliases/AdvanceCondition.md) +- [Selector](type-aliases/Selector.md) +- [StepStage](type-aliases/StepStage.md) + +## Variables + +- [STAGE\_LABELS](variables/STAGE_LABELS.md) diff --git a/frontend/.typedoc/app/components/Onboarding/steps/types/interfaces/OnboardingStep.md b/frontend/.typedoc/app/components/Onboarding/steps/types/interfaces/OnboardingStep.md new file mode 100644 index 00000000..52076133 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/types/interfaces/OnboardingStep.md @@ -0,0 +1,181 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/steps/types](../README.md) / OnboardingStep + +# Interface: OnboardingStep + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/types.ts:47](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/types.ts#L47) + +## Properties + +### dependsOn? + +> `optional` **dependsOn?**: [`StepDependency`](StepDependency.md)[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/types.ts:58](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/types.ts#L58) + +*** + +### description + +> **description**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/types.ts:53](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/types.ts#L53) + +*** + +### id + +> **id**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/types.ts:48](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/types.ts#L48) + +*** + +### index + +> **index**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/types.ts:51](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/types.ts#L51) + +1..N (currently 1..8). + +*** + +### ops + +> **ops**: [`ACOp`](../type-aliases/ACOp.md)[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/types.ts:57](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/types.ts#L57) + +*** + +### requiresDashboard? + +> `optional` **requiresDashboard?**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/types.ts:62](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/types.ts#L62) + +True when ops target dashboard-toolbar elements; runtime auto-prepends a click-into-dashboard hop. + +*** + +### skipIf? + +> `optional` **skipIf?**: (`state`) => `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/types.ts:60](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/types.ts#L60) + +Mark a step already-done at launch / Show me click without running its flow. + +#### Parameters + +##### state + +###### agents + +`AgentsState` = `agentsReducer` + +###### dashboardLayout + +[`DashboardLayoutState`](../../../../../../shared/state/dashboardLayoutSlice/interfaces/DashboardLayoutState.md) = `dashboardLayoutReducer` + +###### dashboards + +`DashboardsState` = `dashboardsReducer` + +###### interaction + +`InteractionState` = `interactionReducer` + +###### mcpRegistry + +`McpRegistryState` = `mcpRegistryReducer` + +###### models + +`ModelsState` = `modelsReducer` + +###### modes + +`ModesState` = `modesReducer` + +###### onboardingProgress + +[`OnboardingProgressState`](../../../../../../shared/state/onboardingProgressSlice/interfaces/OnboardingProgressState.md) = `onboardingProgressReducer` + +###### outputs + +`OutputsState` = `outputsReducer` + +###### settings + +`SettingsState` = `settingsReducer` + +###### skillRegistry + +`SkillRegistryState` = `skillRegistryReducer` + +###### skills + +`SkillsState` = `skillsReducer` + +###### streaming + +`StreamingState` = `streamingReducer` + +###### subscriptions + +[`SubscriptionsState`](../../../../../../shared/state/subscriptionsSlice/interfaces/SubscriptionsState.md) = `subscriptionsReducer` + +###### tempState + +`TempState` = `tempStateReducer` + +###### tools + +`ToolsState` = `toolsReducer` + +###### update + +`UpdateState` = `updateReducer` + +#### Returns + +`boolean` + +*** + +### stage + +> **stage**: [`StepStage`](../type-aliases/StepStage.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/types.ts:49](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/types.ts#L49) + +*** + +### title + +> **title**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/types.ts:52](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/types.ts#L52) + +*** + +### videoDurationLabel? + +> `optional` **videoDurationLabel?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/types.ts:56](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/types.ts#L56) + +Shown in the panel preview chip, e.g. "0:24". + +*** + +### videoSrc? + +> `optional` **videoSrc?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/types.ts:54](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/types.ts#L54) diff --git a/frontend/.typedoc/app/components/Onboarding/steps/types/interfaces/StepDependency.md b/frontend/.typedoc/app/components/Onboarding/steps/types/interfaces/StepDependency.md new file mode 100644 index 00000000..2be6a031 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/types/interfaces/StepDependency.md @@ -0,0 +1,25 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/steps/types](../README.md) / StepDependency + +# Interface: StepDependency + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/types.ts:42](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/types.ts#L42) + +## Properties + +### reopen + +> **reopen**: `"walk_again"` \| `"just_resume"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/types.ts:44](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/types.ts#L44) + +*** + +### stepId + +> **stepId**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/types.ts:43](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/types.ts#L43) diff --git a/frontend/.typedoc/app/components/Onboarding/steps/types/type-aliases/ACMultiChoiceOption.md b/frontend/.typedoc/app/components/Onboarding/steps/types/type-aliases/ACMultiChoiceOption.md new file mode 100644 index 00000000..f972c539 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/types/type-aliases/ACMultiChoiceOption.md @@ -0,0 +1,37 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/steps/types](../README.md) / ACMultiChoiceOption + +# Type Alias: ACMultiChoiceOption + +> **ACMultiChoiceOption** = `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/types.ts:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/types.ts#L8) + +## Properties + +### id + +> **id**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/types.ts:9](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/types.ts#L9) + +*** + +### label + +> **label**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/types.ts:10](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/types.ts#L10) + +*** + +### thenOps? + +> `optional` **thenOps?**: [`ACOp`](ACOp.md)[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/types.ts:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/types.ts#L12) + +If set, queue extra ops on selection so one step can branch without splitting. diff --git a/frontend/.typedoc/app/components/Onboarding/steps/types/type-aliases/ACOp.md b/frontend/.typedoc/app/components/Onboarding/steps/types/type-aliases/ACOp.md new file mode 100644 index 00000000..0f5ddacc --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/types/type-aliases/ACOp.md @@ -0,0 +1,97 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/steps/types](../README.md) / ACOp + +# Type Alias: ACOp + +> **ACOp** = \{ `kind`: `"move_to"`; `offset?`: \{ `x`: `number`; `y`: `number`; \}; `target`: [`Selector`](Selector.md); \} \| \{ `cta?`: `string`; `kind`: `"popup"`; `text`: `string`; \} \| \{ `kind`: `"multi_choice"`; `opId`: `string`; `options`: [`ACMultiChoiceOption`](ACMultiChoiceOption.md)[]; `question`: `string`; \} \| \{ `durationMs?`: `number`; `kind`: `"highlight_section"`; `popup?`: `string`; `target`: [`Selector`](Selector.md); \} \| \{ `kind`: `"type_into"`; `speedMs?`: `number`; `target`: [`Selector`](Selector.md); `text`: `string` \| ((`state`) => `string`); \} \| \{ `kind`: `"click"`; `simulate?`: `boolean`; `target`: [`Selector`](Selector.md); \} \| \{ `kind`: `"drag_select"`; `target`: [`Selector`](Selector.md); \} \| \{ `condition`: [`AdvanceCondition`](AdvanceCondition.md); `hint?`: `string`; `kind`: `"wait_user"`; `timeoutMs?`: `number`; \} \| \{ `kind`: `"delay"`; `ms`: `number`; \} \| \{ `css`: `string`; `kind`: `"wait_for_dom"`; `timeoutMs?`: `number`; \} \| \{ `kind`: `"outro"`; \} + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/types.ts:15](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/types.ts#L15) + +## Union Members + +### Type Literal + +\{ `kind`: `"move_to"`; `offset?`: \{ `x`: `number`; `y`: `number`; \}; `target`: [`Selector`](Selector.md); \} + +*** + +### Type Literal + +\{ `cta?`: `string`; `kind`: `"popup"`; `text`: `string`; \} + +*** + +### Type Literal + +\{ `kind`: `"multi_choice"`; `opId`: `string`; `options`: [`ACMultiChoiceOption`](ACMultiChoiceOption.md)[]; `question`: `string`; \} + +*** + +### Type Literal + +\{ `durationMs?`: `number`; `kind`: `"highlight_section"`; `popup?`: `string`; `target`: [`Selector`](Selector.md); \} + +*** + +### Type Literal + +\{ `kind`: `"type_into"`; `speedMs?`: `number`; `target`: [`Selector`](Selector.md); `text`: `string` \| ((`state`) => `string`); \} + +#### kind + +> **kind**: `"type_into"` + +#### speedMs? + +> `optional` **speedMs?**: `number` + +#### target + +> **target**: [`Selector`](Selector.md) + +#### text + +> **text**: `string` \| ((`state`) => `string`) + +Static string or function evaluated once at op-execution; not reactive to subsequent state. + +*** + +### Type Literal + +\{ `kind`: `"click"`; `simulate?`: `boolean`; `target`: [`Selector`](Selector.md); \} + +*** + +### Type Literal + +\{ `kind`: `"drag_select"`; `target`: [`Selector`](Selector.md); \} + +*** + +### Type Literal + +\{ `condition`: [`AdvanceCondition`](AdvanceCondition.md); `hint?`: `string`; `kind`: `"wait_user"`; `timeoutMs?`: `number`; \} + +*** + +### Type Literal + +\{ `kind`: `"delay"`; `ms`: `number`; \} + +*** + +### Type Literal + +\{ `css`: `string`; `kind`: `"wait_for_dom"`; `timeoutMs?`: `number`; \} + +Poll a raw CSS selector until it mounts, up to timeoutMs (step 8 uses for App Builder chat-input). + +*** + +### Type Literal + +\{ `kind`: `"outro"`; \} diff --git a/frontend/.typedoc/app/components/Onboarding/steps/types/type-aliases/AdvanceCondition.md b/frontend/.typedoc/app/components/Onboarding/steps/types/type-aliases/AdvanceCondition.md new file mode 100644 index 00000000..9b8cdf9f --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/types/type-aliases/AdvanceCondition.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/steps/types](../README.md) / AdvanceCondition + +# Type Alias: AdvanceCondition + +> **AdvanceCondition** = \{ `kind`: `"click_target"`; `target`: [`Selector`](Selector.md); \} \| \{ `equals?`: `unknown`; `kind`: `"redux_predicate"`; `selector`: (`s`) => `unknown`; `truthy?`: `boolean`; \} \| \{ `event`: `string`; `kind`: `"event_bus"`; \} + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/types.ts:35](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/types.ts#L35) diff --git a/frontend/.typedoc/app/components/Onboarding/steps/types/type-aliases/Selector.md b/frontend/.typedoc/app/components/Onboarding/steps/types/type-aliases/Selector.md new file mode 100644 index 00000000..e576c554 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/types/type-aliases/Selector.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/steps/types](../README.md) / Selector + +# Type Alias: Selector + +> **Selector** = `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/types.ts:6](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/types.ts#L6) + +Matches data-onboarding="" or data-select-type="". diff --git a/frontend/.typedoc/app/components/Onboarding/steps/types/type-aliases/StepStage.md b/frontend/.typedoc/app/components/Onboarding/steps/types/type-aliases/StepStage.md new file mode 100644 index 00000000..e7afe2bd --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/types/type-aliases/StepStage.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/steps/types](../README.md) / StepStage + +# Type Alias: StepStage + +> **StepStage** = `"get_started"` \| `"learn_features"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/types.ts:40](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/types.ts#L40) diff --git a/frontend/.typedoc/app/components/Onboarding/steps/types/variables/STAGE_LABELS.md b/frontend/.typedoc/app/components/Onboarding/steps/types/variables/STAGE_LABELS.md new file mode 100644 index 00000000..09ca4412 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/types/variables/STAGE_LABELS.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/components/Onboarding/steps/types](../README.md) / STAGE\_LABELS + +# Variable: STAGE\_LABELS + +> `const` **STAGE\_LABELS**: `Record`\<[`StepStage`](../type-aliases/StepStage.md), `string`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/types.ts:65](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/types.ts#L65) diff --git a/frontend/.typedoc/app/components/Onboarding/steps/variables/STAGE_GROUPS.md b/frontend/.typedoc/app/components/Onboarding/steps/variables/STAGE_GROUPS.md new file mode 100644 index 00000000..95ca400e --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/variables/STAGE_GROUPS.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/Onboarding/steps](../README.md) / STAGE\_GROUPS + +# Variable: STAGE\_GROUPS + +> `const` **STAGE\_GROUPS**: `object`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/index.ts:29](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/index.ts#L29) + +## Type Declaration + +### stage + +> **stage**: [`StepStage`](../types/type-aliases/StepStage.md) + +### steps + +> **steps**: [`OnboardingStep`](../types/interfaces/OnboardingStep.md)[] diff --git a/frontend/.typedoc/app/components/Onboarding/steps/variables/STEPS.md b/frontend/.typedoc/app/components/Onboarding/steps/variables/STEPS.md new file mode 100644 index 00000000..f2d8cb32 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/steps/variables/STEPS.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/Onboarding/steps](../README.md) / STEPS + +# Variable: STEPS + +> `const` **STEPS**: [`OnboardingStep`](../types/interfaces/OnboardingStep.md)[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/steps/index.ts:14](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/steps/index.ts#L14) diff --git a/frontend/.typedoc/app/components/Onboarding/telemetry/README.md b/frontend/.typedoc/app/components/Onboarding/telemetry/README.md new file mode 100644 index 00000000..c1121191 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/telemetry/README.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/components/Onboarding/telemetry + +# app/components/Onboarding/telemetry + +## Functions + +- [clearStepTiming](functions/clearStepTiming.md) +- [markStepStarted](functions/markStepStarted.md) +- [report](functions/report.md) diff --git a/frontend/.typedoc/app/components/Onboarding/telemetry/functions/clearStepTiming.md b/frontend/.typedoc/app/components/Onboarding/telemetry/functions/clearStepTiming.md new file mode 100644 index 00000000..cedd2627 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/telemetry/functions/clearStepTiming.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/Onboarding/telemetry](../README.md) / clearStepTiming + +# Function: clearStepTiming() + +> **clearStepTiming**(): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/telemetry.ts:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/telemetry.ts#L11) + +## Returns + +`void` diff --git a/frontend/.typedoc/app/components/Onboarding/telemetry/functions/markStepStarted.md b/frontend/.typedoc/app/components/Onboarding/telemetry/functions/markStepStarted.md new file mode 100644 index 00000000..1f74d44b --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/telemetry/functions/markStepStarted.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/Onboarding/telemetry](../README.md) / markStepStarted + +# Function: markStepStarted() + +> **markStepStarted**(): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/telemetry.ts:7](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/telemetry.ts#L7) + +## Returns + +`void` diff --git a/frontend/.typedoc/app/components/Onboarding/telemetry/functions/report.md b/frontend/.typedoc/app/components/Onboarding/telemetry/functions/report.md new file mode 100644 index 00000000..1d0a0639 --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/telemetry/functions/report.md @@ -0,0 +1,25 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/Onboarding/telemetry](../README.md) / report + +# Function: report() + +> **report**(`action`, `props?`): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/telemetry.ts:15](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/telemetry.ts#L15) + +## Parameters + +### action + +`string` + +### props? + +`Record`\<`string`, `unknown`\> + +## Returns + +`void` diff --git a/frontend/.typedoc/app/components/Onboarding/variables/OnboardingRoot.md b/frontend/.typedoc/app/components/Onboarding/variables/OnboardingRoot.md new file mode 100644 index 00000000..3ec55adc --- /dev/null +++ b/frontend/.typedoc/app/components/Onboarding/variables/OnboardingRoot.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [app/components/Onboarding](../README.md) / OnboardingRoot + +# Variable: OnboardingRoot + +> `const` **OnboardingRoot**: `React.FC` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/Onboarding/OnboardingRoot.tsx:25](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/Onboarding/OnboardingRoot.tsx#L25) diff --git a/frontend/.typedoc/app/components/editor/CommandPicker/README.md b/frontend/.typedoc/app/components/editor/CommandPicker/README.md new file mode 100644 index 00000000..57fc3754 --- /dev/null +++ b/frontend/.typedoc/app/components/editor/CommandPicker/README.md @@ -0,0 +1,19 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/components/editor/CommandPicker + +# app/components/editor/CommandPicker + +## Interfaces + +- [CommandPickerItem](interfaces/CommandPickerItem.md) + +## Variables + +- [default](variables/default.md) + +## Functions + +- [getToolGroupIcon](functions/getToolGroupIcon.md) diff --git a/frontend/.typedoc/app/components/editor/CommandPicker/functions/getToolGroupIcon.md b/frontend/.typedoc/app/components/editor/CommandPicker/functions/getToolGroupIcon.md new file mode 100644 index 00000000..3c80b6bc --- /dev/null +++ b/frontend/.typedoc/app/components/editor/CommandPicker/functions/getToolGroupIcon.md @@ -0,0 +1,25 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/editor/CommandPicker](../README.md) / getToolGroupIcon + +# Function: getToolGroupIcon() + +> **getToolGroupIcon**(`groupName`, `size?`): `ReactNode` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/CommandPicker.tsx:43](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/CommandPicker.tsx#L43) + +## Parameters + +### groupName + +`string` + +### size? + +`number` = `15` + +## Returns + +`ReactNode` diff --git a/frontend/.typedoc/app/components/editor/CommandPicker/interfaces/CommandPickerItem.md b/frontend/.typedoc/app/components/editor/CommandPicker/interfaces/CommandPickerItem.md new file mode 100644 index 00000000..d9eb07ab --- /dev/null +++ b/frontend/.typedoc/app/components/editor/CommandPicker/interfaces/CommandPickerItem.md @@ -0,0 +1,81 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/editor/CommandPicker](../README.md) / CommandPickerItem + +# Interface: CommandPickerItem + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/CommandPicker.tsx:49](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/CommandPicker.tsx#L49) + +## Properties + +### category + +> **category**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/CommandPicker.tsx:52](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/CommandPicker.tsx#L52) + +*** + +### command + +> **command**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/CommandPicker.tsx:55](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/CommandPicker.tsx#L55) + +*** + +### description + +> **description**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/CommandPicker.tsx:54](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/CommandPicker.tsx#L54) + +*** + +### icon + +> **icon**: `ReactNode` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/CommandPicker.tsx:56](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/CommandPicker.tsx#L56) + +*** + +### iconKey? + +> `optional` **iconKey?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/CommandPicker.tsx:58](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/CommandPicker.tsx#L58) + +*** + +### id + +> **id**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/CommandPicker.tsx:50](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/CommandPicker.tsx#L50) + +*** + +### name + +> **name**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/CommandPicker.tsx:53](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/CommandPicker.tsx#L53) + +*** + +### toolNames? + +> `optional` **toolNames?**: `string`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/CommandPicker.tsx:57](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/CommandPicker.tsx#L57) + +*** + +### type + +> **type**: `"mode"` \| `"skill"` \| `"context"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/CommandPicker.tsx:51](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/CommandPicker.tsx#L51) diff --git a/frontend/.typedoc/app/components/editor/CommandPicker/variables/default.md b/frontend/.typedoc/app/components/editor/CommandPicker/variables/default.md new file mode 100644 index 00000000..b74d70b3 --- /dev/null +++ b/frontend/.typedoc/app/components/editor/CommandPicker/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/editor/CommandPicker](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/CommandPicker.tsx:90](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/CommandPicker.tsx#L90) diff --git a/frontend/.typedoc/app/components/editor/DirectoryBrowser/README.md b/frontend/.typedoc/app/components/editor/DirectoryBrowser/README.md new file mode 100644 index 00000000..346dcec9 --- /dev/null +++ b/frontend/.typedoc/app/components/editor/DirectoryBrowser/README.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/components/editor/DirectoryBrowser + +# app/components/editor/DirectoryBrowser + +## Interfaces + +- [ContextPath](interfaces/ContextPath.md) + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/components/editor/DirectoryBrowser/interfaces/ContextPath.md b/frontend/.typedoc/app/components/editor/DirectoryBrowser/interfaces/ContextPath.md new file mode 100644 index 00000000..436085c3 --- /dev/null +++ b/frontend/.typedoc/app/components/editor/DirectoryBrowser/interfaces/ContextPath.md @@ -0,0 +1,49 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/editor/DirectoryBrowser](../README.md) / ContextPath + +# Interface: ContextPath + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/DirectoryBrowser.tsx:27](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/DirectoryBrowser.tsx#L27) + +## Properties + +### kind? + +> `optional` **kind?**: `"image"` \| `"text"` \| `"pdf"` \| `"binary"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/DirectoryBrowser.tsx:31](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/DirectoryBrowser.tsx#L31) + +*** + +### media\_type? + +> `optional` **media\_type?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/DirectoryBrowser.tsx:32](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/DirectoryBrowser.tsx#L32) + +*** + +### path + +> **path**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/DirectoryBrowser.tsx:28](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/DirectoryBrowser.tsx#L28) + +*** + +### tokens? + +> `optional` **tokens?**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/DirectoryBrowser.tsx:30](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/DirectoryBrowser.tsx#L30) + +*** + +### type + +> **type**: `"file"` \| `"directory"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/DirectoryBrowser.tsx:29](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/DirectoryBrowser.tsx#L29) diff --git a/frontend/.typedoc/app/components/editor/DirectoryBrowser/variables/default.md b/frontend/.typedoc/app/components/editor/DirectoryBrowser/variables/default.md new file mode 100644 index 00000000..5480edb5 --- /dev/null +++ b/frontend/.typedoc/app/components/editor/DirectoryBrowser/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/editor/DirectoryBrowser](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`DirectoryBrowserProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/DirectoryBrowser.tsx:42](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/DirectoryBrowser.tsx#L42) diff --git a/frontend/.typedoc/app/components/editor/ElementSelectionContext/README.md b/frontend/.typedoc/app/components/editor/ElementSelectionContext/README.md new file mode 100644 index 00000000..c51f459a --- /dev/null +++ b/frontend/.typedoc/app/components/editor/ElementSelectionContext/README.md @@ -0,0 +1,19 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/components/editor/ElementSelectionContext + +# app/components/editor/ElementSelectionContext + +## Interfaces + +- [SelectedElement](interfaces/SelectedElement.md) + +## Variables + +- [ElementSelectionProvider](variables/ElementSelectionProvider.md) + +## Functions + +- [useElementSelection](functions/useElementSelection.md) diff --git a/frontend/.typedoc/app/components/editor/ElementSelectionContext/functions/useElementSelection.md b/frontend/.typedoc/app/components/editor/ElementSelectionContext/functions/useElementSelection.md new file mode 100644 index 00000000..ae901cbc --- /dev/null +++ b/frontend/.typedoc/app/components/editor/ElementSelectionContext/functions/useElementSelection.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/editor/ElementSelectionContext](../README.md) / useElementSelection + +# Function: useElementSelection() + +> **useElementSelection**(): `ElementSelectionContextValue` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/ElementSelectionContext.tsx:40](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/ElementSelectionContext.tsx#L40) + +## Returns + +`ElementSelectionContextValue` \| `null` diff --git a/frontend/.typedoc/app/components/editor/ElementSelectionContext/interfaces/SelectedElement.md b/frontend/.typedoc/app/components/editor/ElementSelectionContext/interfaces/SelectedElement.md new file mode 100644 index 00000000..cff39cbe --- /dev/null +++ b/frontend/.typedoc/app/components/editor/ElementSelectionContext/interfaces/SelectedElement.md @@ -0,0 +1,113 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/editor/ElementSelectionContext](../README.md) / SelectedElement + +# Interface: SelectedElement + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/ElementSelectionContext.tsx:4](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/ElementSelectionContext.tsx#L4) + +## Properties + +### boundingRect + +> **boundingRect**: `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/ElementSelectionContext.tsx:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/ElementSelectionContext.tsx#L12) + +#### height + +> **height**: `number` + +#### width + +> **width**: `number` + +#### x + +> **x**: `number` + +#### y + +> **y**: `number` + +*** + +### className + +> **className**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/ElementSelectionContext.tsx:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/ElementSelectionContext.tsx#L8) + +*** + +### computedStyles + +> **computedStyles**: `Record`\<`string`, `string`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/ElementSelectionContext.tsx:10](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/ElementSelectionContext.tsx#L10) + +*** + +### id + +> **id**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/ElementSelectionContext.tsx:5](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/ElementSelectionContext.tsx#L5) + +*** + +### outerHTML + +> **outerHTML**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/ElementSelectionContext.tsx:9](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/ElementSelectionContext.tsx#L9) + +*** + +### screenshot? + +> `optional` **screenshot?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/ElementSelectionContext.tsx:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/ElementSelectionContext.tsx#L11) + +*** + +### selectorPath + +> **selectorPath**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/ElementSelectionContext.tsx:6](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/ElementSelectionContext.tsx#L6) + +*** + +### semanticData? + +> `optional` **semanticData?**: `Record`\<`string`, `any`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/ElementSelectionContext.tsx:15](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/ElementSelectionContext.tsx#L15) + +*** + +### semanticLabel? + +> `optional` **semanticLabel?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/ElementSelectionContext.tsx:14](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/ElementSelectionContext.tsx#L14) + +*** + +### semanticType? + +> `optional` **semanticType?**: `"message"` \| `"agent-card"` \| `"tool-call"` \| `"tool-group"` \| `"view-card"` \| `"browser-card"` \| `"dom-element"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/ElementSelectionContext.tsx:13](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/ElementSelectionContext.tsx#L13) + +*** + +### tagName + +> **tagName**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/ElementSelectionContext.tsx:7](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/ElementSelectionContext.tsx#L7) diff --git a/frontend/.typedoc/app/components/editor/ElementSelectionContext/variables/ElementSelectionProvider.md b/frontend/.typedoc/app/components/editor/ElementSelectionContext/variables/ElementSelectionProvider.md new file mode 100644 index 00000000..7d7d7136 --- /dev/null +++ b/frontend/.typedoc/app/components/editor/ElementSelectionContext/variables/ElementSelectionProvider.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/editor/ElementSelectionContext](../README.md) / ElementSelectionProvider + +# Variable: ElementSelectionProvider + +> `const` **ElementSelectionProvider**: `React.FC`\<\{ `children`: `React.ReactNode`; \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/ElementSelectionContext.tsx:44](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/ElementSelectionContext.tsx#L44) diff --git a/frontend/.typedoc/app/components/editor/RichPromptEditor/README.md b/frontend/.typedoc/app/components/editor/RichPromptEditor/README.md new file mode 100644 index 00000000..94ec3f11 --- /dev/null +++ b/frontend/.typedoc/app/components/editor/RichPromptEditor/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/components/editor/RichPromptEditor + +# app/components/editor/RichPromptEditor + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/components/editor/RichPromptEditor/variables/default.md b/frontend/.typedoc/app/components/editor/RichPromptEditor/variables/default.md new file mode 100644 index 00000000..f77be607 --- /dev/null +++ b/frontend/.typedoc/app/components/editor/RichPromptEditor/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/editor/RichPromptEditor](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`RichPromptEditorProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/RichPromptEditor.tsx:31](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/RichPromptEditor.tsx#L31) diff --git a/frontend/.typedoc/app/components/editor/SelectionOverlay/README.md b/frontend/.typedoc/app/components/editor/SelectionOverlay/README.md new file mode 100644 index 00000000..7736f136 --- /dev/null +++ b/frontend/.typedoc/app/components/editor/SelectionOverlay/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/components/editor/SelectionOverlay + +# app/components/editor/SelectionOverlay + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/components/editor/SelectionOverlay/variables/default.md b/frontend/.typedoc/app/components/editor/SelectionOverlay/variables/default.md new file mode 100644 index 00000000..86ca76a7 --- /dev/null +++ b/frontend/.typedoc/app/components/editor/SelectionOverlay/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/editor/SelectionOverlay](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/SelectionOverlay.tsx:33](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/SelectionOverlay.tsx#L33) diff --git a/frontend/.typedoc/app/components/editor/richEditorUtils/README.md b/frontend/.typedoc/app/components/editor/richEditorUtils/README.md new file mode 100644 index 00000000..47717e68 --- /dev/null +++ b/frontend/.typedoc/app/components/editor/richEditorUtils/README.md @@ -0,0 +1,25 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/components/editor/richEditorUtils + +# app/components/editor/richEditorUtils + +## Interfaces + +- [AttachedSkill](interfaces/AttachedSkill.md) +- [TriggerState](interfaces/TriggerState.md) + +## Variables + +- [EMPTY\_TRIGGER](variables/EMPTY_TRIGGER.md) +- [SKILL\_COLOR](variables/SKILL_COLOR.md) +- [SKILL\_PILL\_ATTR](variables/SKILL_PILL_ATTR.md) + +## Functions + +- [createSkillPillElement](functions/createSkillPillElement.md) +- [deserializeToEditor](functions/deserializeToEditor.md) +- [detectEditorTrigger](functions/detectEditorTrigger.md) +- [serializeEditorContent](functions/serializeEditorContent.md) diff --git a/frontend/.typedoc/app/components/editor/richEditorUtils/functions/createSkillPillElement.md b/frontend/.typedoc/app/components/editor/richEditorUtils/functions/createSkillPillElement.md new file mode 100644 index 00000000..ac84b02a --- /dev/null +++ b/frontend/.typedoc/app/components/editor/richEditorUtils/functions/createSkillPillElement.md @@ -0,0 +1,33 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/editor/richEditorUtils](../README.md) / createSkillPillElement + +# Function: createSkillPillElement() + +> **createSkillPillElement**(`skill`, `onRemove`, `monoFont`, `errorColor`): `HTMLSpanElement` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/richEditorUtils.ts:10](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/richEditorUtils.ts#L10) + +## Parameters + +### skill + +[`AttachedSkill`](../interfaces/AttachedSkill.md) + +### onRemove + +(`id`) => `void` + +### monoFont + +`string` + +### errorColor + +`string` + +## Returns + +`HTMLSpanElement` diff --git a/frontend/.typedoc/app/components/editor/richEditorUtils/functions/deserializeToEditor.md b/frontend/.typedoc/app/components/editor/richEditorUtils/functions/deserializeToEditor.md new file mode 100644 index 00000000..15badf34 --- /dev/null +++ b/frontend/.typedoc/app/components/editor/richEditorUtils/functions/deserializeToEditor.md @@ -0,0 +1,41 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/editor/richEditorUtils](../README.md) / deserializeToEditor + +# Function: deserializeToEditor() + +> **deserializeToEditor**(`editor`, `text`, `skillsByName`, `onRemove`, `monoFont`, `errorColor`): `Record`\<`string`, [`AttachedSkill`](../interfaces/AttachedSkill.md)\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/richEditorUtils.ts:68](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/richEditorUtils.ts#L68) + +## Parameters + +### editor + +`HTMLElement` + +### text + +`string` + +### skillsByName + +`Record`\<`string`, [`AttachedSkill`](../interfaces/AttachedSkill.md)\> + +### onRemove + +(`id`) => `void` + +### monoFont + +`string` + +### errorColor + +`string` + +## Returns + +`Record`\<`string`, [`AttachedSkill`](../interfaces/AttachedSkill.md)\> diff --git a/frontend/.typedoc/app/components/editor/richEditorUtils/functions/detectEditorTrigger.md b/frontend/.typedoc/app/components/editor/richEditorUtils/functions/detectEditorTrigger.md new file mode 100644 index 00000000..da8ad059 --- /dev/null +++ b/frontend/.typedoc/app/components/editor/richEditorUtils/functions/detectEditorTrigger.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/editor/richEditorUtils](../README.md) / detectEditorTrigger + +# Function: detectEditorTrigger() + +> **detectEditorTrigger**(): [`TriggerState`](../interfaces/TriggerState.md) \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/richEditorUtils.ts:153](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/richEditorUtils.ts#L153) + +## Returns + +[`TriggerState`](../interfaces/TriggerState.md) \| `null` diff --git a/frontend/.typedoc/app/components/editor/richEditorUtils/functions/serializeEditorContent.md b/frontend/.typedoc/app/components/editor/richEditorUtils/functions/serializeEditorContent.md new file mode 100644 index 00000000..35e41ff7 --- /dev/null +++ b/frontend/.typedoc/app/components/editor/richEditorUtils/functions/serializeEditorContent.md @@ -0,0 +1,25 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/editor/richEditorUtils](../README.md) / serializeEditorContent + +# Function: serializeEditorContent() + +> **serializeEditorContent**(`editor`, `skills`): `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/richEditorUtils.ts:104](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/richEditorUtils.ts#L104) + +## Parameters + +### editor + +`HTMLElement` + +### skills + +`Record`\<`string`, [`AttachedSkill`](../interfaces/AttachedSkill.md)\> + +## Returns + +`string` diff --git a/frontend/.typedoc/app/components/editor/richEditorUtils/interfaces/AttachedSkill.md b/frontend/.typedoc/app/components/editor/richEditorUtils/interfaces/AttachedSkill.md new file mode 100644 index 00000000..fbec7421 --- /dev/null +++ b/frontend/.typedoc/app/components/editor/richEditorUtils/interfaces/AttachedSkill.md @@ -0,0 +1,33 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/editor/richEditorUtils](../README.md) / AttachedSkill + +# Interface: AttachedSkill + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/richEditorUtils.ts:4](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/richEditorUtils.ts#L4) + +## Properties + +### content + +> **content**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/richEditorUtils.ts:7](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/richEditorUtils.ts#L7) + +*** + +### id + +> **id**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/richEditorUtils.ts:5](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/richEditorUtils.ts#L5) + +*** + +### name + +> **name**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/richEditorUtils.ts:6](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/richEditorUtils.ts#L6) diff --git a/frontend/.typedoc/app/components/editor/richEditorUtils/interfaces/TriggerState.md b/frontend/.typedoc/app/components/editor/richEditorUtils/interfaces/TriggerState.md new file mode 100644 index 00000000..adf3f592 --- /dev/null +++ b/frontend/.typedoc/app/components/editor/richEditorUtils/interfaces/TriggerState.md @@ -0,0 +1,49 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/editor/richEditorUtils](../README.md) / TriggerState + +# Interface: TriggerState + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/richEditorUtils.ts:137](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/richEditorUtils.ts#L137) + +## Properties + +### filter + +> **filter**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/richEditorUtils.ts:140](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/richEditorUtils.ts#L140) + +*** + +### trigger + +> **trigger**: `"/"` \| `"@"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/richEditorUtils.ts:139](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/richEditorUtils.ts#L139) + +*** + +### triggerNode + +> **triggerNode**: `Text` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/richEditorUtils.ts:141](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/richEditorUtils.ts#L141) + +*** + +### triggerOffset + +> **triggerOffset**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/richEditorUtils.ts:142](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/richEditorUtils.ts#L142) + +*** + +### visible + +> **visible**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/richEditorUtils.ts:138](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/richEditorUtils.ts#L138) diff --git a/frontend/.typedoc/app/components/editor/richEditorUtils/variables/EMPTY_TRIGGER.md b/frontend/.typedoc/app/components/editor/richEditorUtils/variables/EMPTY_TRIGGER.md new file mode 100644 index 00000000..81900ddb --- /dev/null +++ b/frontend/.typedoc/app/components/editor/richEditorUtils/variables/EMPTY_TRIGGER.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/editor/richEditorUtils](../README.md) / EMPTY\_TRIGGER + +# Variable: EMPTY\_TRIGGER + +> `const` **EMPTY\_TRIGGER**: [`TriggerState`](../interfaces/TriggerState.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/richEditorUtils.ts:145](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/richEditorUtils.ts#L145) diff --git a/frontend/.typedoc/app/components/editor/richEditorUtils/variables/SKILL_COLOR.md b/frontend/.typedoc/app/components/editor/richEditorUtils/variables/SKILL_COLOR.md new file mode 100644 index 00000000..9ea3edad --- /dev/null +++ b/frontend/.typedoc/app/components/editor/richEditorUtils/variables/SKILL_COLOR.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/editor/richEditorUtils](../README.md) / SKILL\_COLOR + +# Variable: SKILL\_COLOR + +> `const` **SKILL\_COLOR**: `"#7B61BD"` = `'#7B61BD'` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/richEditorUtils.ts:2](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/richEditorUtils.ts#L2) diff --git a/frontend/.typedoc/app/components/editor/richEditorUtils/variables/SKILL_PILL_ATTR.md b/frontend/.typedoc/app/components/editor/richEditorUtils/variables/SKILL_PILL_ATTR.md new file mode 100644 index 00000000..042410d6 --- /dev/null +++ b/frontend/.typedoc/app/components/editor/richEditorUtils/variables/SKILL_PILL_ATTR.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/editor/richEditorUtils](../README.md) / SKILL\_PILL\_ATTR + +# Variable: SKILL\_PILL\_ATTR + +> `const` **SKILL\_PILL\_ATTR**: `"data-skill-id"` = `'data-skill-id'` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/richEditorUtils.ts:1](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/richEditorUtils.ts#L1) diff --git a/frontend/.typedoc/app/components/editor/useDomElementSelector/README.md b/frontend/.typedoc/app/components/editor/useDomElementSelector/README.md new file mode 100644 index 00000000..0d68b425 --- /dev/null +++ b/frontend/.typedoc/app/components/editor/useDomElementSelector/README.md @@ -0,0 +1,20 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/components/editor/useDomElementSelector + +# app/components/editor/useDomElementSelector + +## Interfaces + +- [ClippedRect](interfaces/ClippedRect.md) +- [DomSelectorState](interfaces/DomSelectorState.md) +- [DragPreviewElement](interfaces/DragPreviewElement.md) +- [DragRect](interfaces/DragRect.md) +- [OverlayState](interfaces/OverlayState.md) + +## Functions + +- [clipRectToAncestors](functions/clipRectToAncestors.md) +- [useDomElementSelector](functions/useDomElementSelector.md) diff --git a/frontend/.typedoc/app/components/editor/useDomElementSelector/functions/clipRectToAncestors.md b/frontend/.typedoc/app/components/editor/useDomElementSelector/functions/clipRectToAncestors.md new file mode 100644 index 00000000..3a5d5125 --- /dev/null +++ b/frontend/.typedoc/app/components/editor/useDomElementSelector/functions/clipRectToAncestors.md @@ -0,0 +1,25 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/editor/useDomElementSelector](../README.md) / clipRectToAncestors + +# Function: clipRectToAncestors() + +> **clipRectToAncestors**(`el`, `raw`): [`ClippedRect`](../interfaces/ClippedRect.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:84](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L84) + +## Parameters + +### el + +`Element` + +### raw + +`DOMRect` + +## Returns + +[`ClippedRect`](../interfaces/ClippedRect.md) diff --git a/frontend/.typedoc/app/components/editor/useDomElementSelector/functions/useDomElementSelector.md b/frontend/.typedoc/app/components/editor/useDomElementSelector/functions/useDomElementSelector.md new file mode 100644 index 00000000..d08554ba --- /dev/null +++ b/frontend/.typedoc/app/components/editor/useDomElementSelector/functions/useDomElementSelector.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/editor/useDomElementSelector](../README.md) / useDomElementSelector + +# Function: useDomElementSelector() + +> **useDomElementSelector**(): [`DomSelectorState`](../interfaces/DomSelectorState.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:160](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L160) + +## Returns + +[`DomSelectorState`](../interfaces/DomSelectorState.md) diff --git a/frontend/.typedoc/app/components/editor/useDomElementSelector/interfaces/ClippedRect.md b/frontend/.typedoc/app/components/editor/useDomElementSelector/interfaces/ClippedRect.md new file mode 100644 index 00000000..229933bc --- /dev/null +++ b/frontend/.typedoc/app/components/editor/useDomElementSelector/interfaces/ClippedRect.md @@ -0,0 +1,65 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/editor/useDomElementSelector](../README.md) / ClippedRect + +# Interface: ClippedRect + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:74](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L74) + +## Properties + +### clipLeft + +> **clipLeft**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:80](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L80) + +*** + +### clipTop + +> **clipTop**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:81](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L81) + +*** + +### height + +> **height**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:78](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L78) + +*** + +### hidden + +> **hidden**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:79](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L79) + +*** + +### left + +> **left**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:76](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L76) + +*** + +### top + +> **top**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:75](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L75) + +*** + +### width + +> **width**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:77](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L77) diff --git a/frontend/.typedoc/app/components/editor/useDomElementSelector/interfaces/DomSelectorState.md b/frontend/.typedoc/app/components/editor/useDomElementSelector/interfaces/DomSelectorState.md new file mode 100644 index 00000000..6762c07c --- /dev/null +++ b/frontend/.typedoc/app/components/editor/useDomElementSelector/interfaces/DomSelectorState.md @@ -0,0 +1,33 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/editor/useDomElementSelector](../README.md) / DomSelectorState + +# Interface: DomSelectorState + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:154](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L154) + +## Properties + +### dragPreview + +> **dragPreview**: [`DragPreviewElement`](DragPreviewElement.md)[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:157](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L157) + +*** + +### dragRect + +> **dragRect**: [`DragRect`](DragRect.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:156](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L156) + +*** + +### overlay + +> **overlay**: [`OverlayState`](OverlayState.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:155](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L155) diff --git a/frontend/.typedoc/app/components/editor/useDomElementSelector/interfaces/DragPreviewElement.md b/frontend/.typedoc/app/components/editor/useDomElementSelector/interfaces/DragPreviewElement.md new file mode 100644 index 00000000..07e36bd0 --- /dev/null +++ b/frontend/.typedoc/app/components/editor/useDomElementSelector/interfaces/DragPreviewElement.md @@ -0,0 +1,81 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/editor/useDomElementSelector](../README.md) / DragPreviewElement + +# Interface: DragPreviewElement + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:140](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L140) + +## Properties + +### action + +> **action**: `"add"` \| `"remove"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:147](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L147) + +*** + +### clipLeft + +> **clipLeft**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:148](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L148) + +*** + +### clipTop + +> **clipTop**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:149](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L149) + +*** + +### height + +> **height**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:145](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L145) + +*** + +### label + +> **label**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:146](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L146) + +*** + +### left + +> **left**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:143](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L143) + +*** + +### selectId + +> **selectId**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:141](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L141) + +*** + +### top + +> **top**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:142](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L142) + +*** + +### width + +> **width**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:144](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L144) diff --git a/frontend/.typedoc/app/components/editor/useDomElementSelector/interfaces/DragRect.md b/frontend/.typedoc/app/components/editor/useDomElementSelector/interfaces/DragRect.md new file mode 100644 index 00000000..b1ef1e08 --- /dev/null +++ b/frontend/.typedoc/app/components/editor/useDomElementSelector/interfaces/DragRect.md @@ -0,0 +1,49 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/editor/useDomElementSelector](../README.md) / DragRect + +# Interface: DragRect + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:23](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L23) + +## Properties + +### height + +> **height**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:28](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L28) + +*** + +### left + +> **left**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:26](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L26) + +*** + +### top + +> **top**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:25](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L25) + +*** + +### visible + +> **visible**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:24](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L24) + +*** + +### width + +> **width**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:27](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L27) diff --git a/frontend/.typedoc/app/components/editor/useDomElementSelector/interfaces/OverlayState.md b/frontend/.typedoc/app/components/editor/useDomElementSelector/interfaces/OverlayState.md new file mode 100644 index 00000000..3e4bfb31 --- /dev/null +++ b/frontend/.typedoc/app/components/editor/useDomElementSelector/interfaces/OverlayState.md @@ -0,0 +1,73 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/editor/useDomElementSelector](../README.md) / OverlayState + +# Interface: OverlayState + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L12) + +## Properties + +### clipLeft + +> **clipLeft**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:19](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L19) + +*** + +### clipTop + +> **clipTop**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:20](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L20) + +*** + +### height + +> **height**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:17](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L17) + +*** + +### label + +> **label**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:18](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L18) + +*** + +### left + +> **left**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:15](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L15) + +*** + +### top + +> **top**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:14](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L14) + +*** + +### visible + +> **visible**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:13](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L13) + +*** + +### width + +> **width**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/editor/useDomElementSelector.ts:16](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/editor/useDomElementSelector.ts#L16) diff --git a/frontend/.typedoc/app/components/feedback/Animated/README.md b/frontend/.typedoc/app/components/feedback/Animated/README.md new file mode 100644 index 00000000..5722d18d --- /dev/null +++ b/frontend/.typedoc/app/components/feedback/Animated/README.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/components/feedback/Animated + +# app/components/feedback/Animated + +## Variables + +- [TweeningNumber](variables/TweeningNumber.md) + +## Functions + +- [CrossFadeOnChange](functions/CrossFadeOnChange.md) diff --git a/frontend/.typedoc/app/components/feedback/Animated/functions/CrossFadeOnChange.md b/frontend/.typedoc/app/components/feedback/Animated/functions/CrossFadeOnChange.md new file mode 100644 index 00000000..8c4f92af --- /dev/null +++ b/frontend/.typedoc/app/components/feedback/Animated/functions/CrossFadeOnChange.md @@ -0,0 +1,27 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/feedback/Animated](../README.md) / CrossFadeOnChange + +# Function: CrossFadeOnChange() + +> **CrossFadeOnChange**\<`T`\>(`__namedParameters`): `Element` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/feedback/Animated.tsx:23](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/feedback/Animated.tsx#L23) + +## Type Parameters + +### T + +`T` + +## Parameters + +### \_\_namedParameters + +`CrossFadeProps`\<`T`\> + +## Returns + +`Element` diff --git a/frontend/.typedoc/app/components/feedback/Animated/variables/TweeningNumber.md b/frontend/.typedoc/app/components/feedback/Animated/variables/TweeningNumber.md new file mode 100644 index 00000000..1a6c8a9d --- /dev/null +++ b/frontend/.typedoc/app/components/feedback/Animated/variables/TweeningNumber.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/feedback/Animated](../README.md) / TweeningNumber + +# Variable: TweeningNumber + +> `const` **TweeningNumber**: `React.FC`\<`TweeningNumberProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/feedback/Animated.tsx:66](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/feedback/Animated.tsx#L66) diff --git a/frontend/.typedoc/app/components/feedback/ErrorBoundary/README.md b/frontend/.typedoc/app/components/feedback/ErrorBoundary/README.md new file mode 100644 index 00000000..cb4e934b --- /dev/null +++ b/frontend/.typedoc/app/components/feedback/ErrorBoundary/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/components/feedback/ErrorBoundary + +# app/components/feedback/ErrorBoundary + +## Classes + +- [default](classes/default.md) diff --git a/frontend/.typedoc/app/components/feedback/ErrorBoundary/classes/default.md b/frontend/.typedoc/app/components/feedback/ErrorBoundary/classes/default.md new file mode 100644 index 00000000..77f6847c --- /dev/null +++ b/frontend/.typedoc/app/components/feedback/ErrorBoundary/classes/default.md @@ -0,0 +1,714 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/feedback/ErrorBoundary](../README.md) / default + +# Class: default + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/feedback/ErrorBoundary.tsx:23](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/feedback/ErrorBoundary.tsx#L23) + +Catches uncaught render errors; fallback shows stack, cloud gets a fire-and-forget report. + +## Extends + +- `Component`\<`Props`, `State`\> + +## Constructors + +### Constructor + +> **new default**(`props`): `ErrorBoundary` + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@types/react/index.d.ts:1016 + +#### Parameters + +##### props + +`Props` + +#### Returns + +`ErrorBoundary` + +#### Inherited from + +`React.Component.constructor` + +### Constructor + +> **new default**(`props`, `context`): `ErrorBoundary` + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@types/react/index.d.ts:1021 + +#### Parameters + +##### props + +`Props` + +##### context + +`any` + +#### Returns + +`ErrorBoundary` + +#### Deprecated + +#### See + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html) + +#### Inherited from + +`React.Component.constructor` + +## Properties + +### context + +> **context**: `unknown` + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@types/react/index.d.ts:1014 + +If using the new style context, re-declare this in your class to be the +`React.ContextType` of your `static contextType`. +Should be used with type annotation or static contextType. + +#### Example + +```ts +static contextType = MyContext +// For TS pre-3.7: +context!: React.ContextType +// For TS 3.7 and above: +declare context: React.ContextType +``` + +#### See + +[React Docs](https://react.dev/reference/react/Component#context) + +#### Inherited from + +`React.Component.context` + +*** + +### props + +> `readonly` **props**: `Readonly`\<`P`\> + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@types/react/index.d.ts:1034 + +#### Inherited from + +`React.Component.props` + +*** + +### ~~refs~~ + +> **refs**: `object` + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@types/react/index.d.ts:1041 + +#### Index Signature + +\[`key`: `string`\]: `ReactInstance` + +#### Deprecated + +#### See + +[Legacy React Docs](https://legacy.reactjs.org/docs/refs-and-the-dom.html#legacy-api-string-refs) + +#### Inherited from + +`React.Component.refs` + +*** + +### state + +> **state**: `State` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/feedback/ErrorBoundary.tsx:24](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/feedback/ErrorBoundary.tsx#L24) + +#### Overrides + +`React.Component.state` + +*** + +### contextType? + +> `static` `optional` **contextType?**: `Context`\<`any`\> + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@types/react/index.d.ts:996 + +If set, `this.context` will be set at runtime to the current value of the given Context. + +#### Example + +```ts +type MyContext = number +const Ctx = React.createContext(0) + +class Foo extends React.Component { + static contextType = Ctx + context!: React.ContextType + render () { + return <>My context's value: {this.context}; + } +} +``` + +#### See + +[https://react.dev/reference/react/Component#static-contexttype](https://react.dev/reference/react/Component#static-contexttype) + +#### Inherited from + +`React.Component.contextType` + +## Methods + +### componentDidCatch() + +> **componentDidCatch**(`error`, `info`): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/feedback/ErrorBoundary.tsx:30](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/feedback/ErrorBoundary.tsx#L30) + +Catches exceptions generated in descendant components. Unhandled exceptions will cause +the entire component tree to unmount. + +#### Parameters + +##### error + +`Error` + +##### info + +`ErrorInfo` + +#### Returns + +`void` + +#### Overrides + +`React.Component.componentDidCatch` + +*** + +### componentDidMount()? + +> `optional` **componentDidMount**(): `void` + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@types/react/index.d.ts:1377 + +Called immediately after a component is mounted. Setting state here will trigger re-rendering. + +#### Returns + +`void` + +#### Inherited from + +`React.Component.componentDidMount` + +*** + +### componentDidUpdate()? + +> `optional` **componentDidUpdate**(`prevProps`, `prevState`, `snapshot?`): `void` + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@types/react/index.d.ts:1440 + +Called immediately after updating occurs. Not called for the initial render. + +The snapshot is only present if [getSnapshotBeforeUpdate](#getsnapshotbeforeupdate) is present and returns non-null. + +#### Parameters + +##### prevProps + +`Readonly`\<`P`\> + +##### prevState + +`Readonly`\<`S`\> + +##### snapshot? + +`any` + +#### Returns + +`void` + +#### Inherited from + +`React.Component.componentDidUpdate` + +*** + +### ~~componentWillMount()?~~ + +> `optional` **componentWillMount**(): `void` + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@types/react/index.d.ts:1456 + +Called immediately before mounting occurs, and before Component.render. +Avoid introducing any side-effects or subscriptions in this method. + +Note: the presence of NewLifecycle.getSnapshotBeforeUpdate getSnapshotBeforeUpdate +or StaticLifecycle.getDerivedStateFromProps getDerivedStateFromProps prevents +this from being invoked. + +#### Returns + +`void` + +#### Deprecated + +16.3, use ComponentLifecycle.componentDidMount componentDidMount or the constructor instead; will stop working in React 17 + +#### See + + - [https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#initializing-state](https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#initializing-state) + - [https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path](https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path) + +#### Inherited from + +`React.Component.componentWillMount` + +*** + +### ~~componentWillReceiveProps()?~~ + +> `optional` **componentWillReceiveProps**(`nextProps`, `nextContext`): `void` + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@types/react/index.d.ts:1487 + +Called when the component may be receiving new props. +React may call this even if props have not changed, so be sure to compare new and existing +props if you only want to handle changes. + +Calling Component.setState generally does not trigger this method. + +Note: the presence of NewLifecycle.getSnapshotBeforeUpdate getSnapshotBeforeUpdate +or StaticLifecycle.getDerivedStateFromProps getDerivedStateFromProps prevents +this from being invoked. + +#### Parameters + +##### nextProps + +`Readonly`\<`P`\> + +##### nextContext + +`any` + +#### Returns + +`void` + +#### Deprecated + +16.3, use static StaticLifecycle.getDerivedStateFromProps getDerivedStateFromProps instead; will stop working in React 17 + +#### See + + - [https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#updating-state-based-on-props](https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#updating-state-based-on-props) + - [https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path](https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path) + +#### Inherited from + +`React.Component.componentWillReceiveProps` + +*** + +### componentWillUnmount()? + +> `optional` **componentWillUnmount**(): `void` + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@types/react/index.d.ts:1393 + +Called immediately before a component is destroyed. Perform any necessary cleanup in this method, such as +cancelled network requests, or cleaning up any DOM elements created in `componentDidMount`. + +#### Returns + +`void` + +#### Inherited from + +`React.Component.componentWillUnmount` + +*** + +### ~~componentWillUpdate()?~~ + +> `optional` **componentWillUpdate**(`nextProps`, `nextState`, `nextContext`): `void` + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@types/react/index.d.ts:1519 + +Called immediately before rendering when new props or state is received. Not called for the initial render. + +Note: You cannot call Component.setState here. + +Note: the presence of NewLifecycle.getSnapshotBeforeUpdate getSnapshotBeforeUpdate +or StaticLifecycle.getDerivedStateFromProps getDerivedStateFromProps prevents +this from being invoked. + +#### Parameters + +##### nextProps + +`Readonly`\<`P`\> + +##### nextState + +`Readonly`\<`S`\> + +##### nextContext + +`any` + +#### Returns + +`void` + +#### Deprecated + +16.3, use getSnapshotBeforeUpdate instead; will stop working in React 17 + +#### See + + - [https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#reading-dom-properties-before-an-update](https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#reading-dom-properties-before-an-update) + - [https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path](https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path) + +#### Inherited from + +`React.Component.componentWillUpdate` + +*** + +### forceUpdate() + +> **forceUpdate**(`callback?`): `void` + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@types/react/index.d.ts:1031 + +#### Parameters + +##### callback? + +() => `void` + +#### Returns + +`void` + +#### Inherited from + +`React.Component.forceUpdate` + +*** + +### getSnapshotBeforeUpdate()? + +> `optional` **getSnapshotBeforeUpdate**(`prevProps`, `prevState`): `any` + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@types/react/index.d.ts:1434 + +Runs before React applies the result of Component.render render to the document, and +returns an object to be given to [componentDidUpdate](#componentdidupdate). Useful for saving +things such as scroll position before Component.render render causes changes to it. + +Note: the presence of this method prevents any of the deprecated +lifecycle events from running. + +#### Parameters + +##### prevProps + +`Readonly`\<`P`\> + +##### prevState + +`Readonly`\<`S`\> + +#### Returns + +`any` + +#### Inherited from + +`React.Component.getSnapshotBeforeUpdate` + +*** + +### handleReload() + +> **handleReload**(): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/feedback/ErrorBoundary.tsx:47](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/feedback/ErrorBoundary.tsx#L47) + +#### Returns + +`void` + +*** + +### handleResetState() + +> **handleResetState**(): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/feedback/ErrorBoundary.tsx:56](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/feedback/ErrorBoundary.tsx#L56) + +#### Returns + +`void` + +*** + +### render() + +> **render**(): `string` \| `number` \| `boolean` \| `Element` \| `Iterable`\<`ReactNode`, `any`, `any`\> \| `null` \| `undefined` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/feedback/ErrorBoundary.tsx:69](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/feedback/ErrorBoundary.tsx#L69) + +#### Returns + +`string` \| `number` \| `boolean` \| `Element` \| `Iterable`\<`ReactNode`, `any`, `any`\> \| `null` \| `undefined` + +#### Overrides + +`React.Component.render` + +*** + +### setState() + +> **setState**\<`K`\>(`state`, `callback?`): `void` + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@types/react/index.d.ts:1026 + +#### Type Parameters + +##### K + +`K` *extends* `"error"` + +#### Parameters + +##### state + +`State` \| ((`prevState`, `props`) => `State` \| `Pick`\<`State`, `K`\> \| `null`) \| `Pick`\<`State`, `K`\> \| `null` + +##### callback? + +() => `void` + +#### Returns + +`void` + +#### Inherited from + +`React.Component.setState` + +*** + +### shouldComponentUpdate()? + +> `optional` **shouldComponentUpdate**(`nextProps`, `nextState`, `nextContext`): `boolean` + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@types/react/index.d.ts:1388 + +Called to determine whether the change in props and state should trigger a re-render. + +`Component` always returns true. +`PureComponent` implements a shallow comparison on props and state and returns true if any +props or states have changed. + +If false is returned, Component.render, `componentWillUpdate` +and `componentDidUpdate` will not be called. + +#### Parameters + +##### nextProps + +`Readonly`\<`P`\> + +##### nextState + +`Readonly`\<`S`\> + +##### nextContext + +`any` + +#### Returns + +`boolean` + +#### Inherited from + +`React.Component.shouldComponentUpdate` + +*** + +### ~~UNSAFE\_componentWillMount()?~~ + +> `optional` **UNSAFE\_componentWillMount**(): `void` + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@types/react/index.d.ts:1471 + +Called immediately before mounting occurs, and before Component.render. +Avoid introducing any side-effects or subscriptions in this method. + +This method will not stop working in React 17. + +Note: the presence of NewLifecycle.getSnapshotBeforeUpdate getSnapshotBeforeUpdate +or StaticLifecycle.getDerivedStateFromProps getDerivedStateFromProps prevents +this from being invoked. + +#### Returns + +`void` + +#### Deprecated + +16.3, use ComponentLifecycle.componentDidMount componentDidMount or the constructor instead + +#### See + + - [https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#initializing-state](https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#initializing-state) + - [https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path](https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path) + +#### Inherited from + +`React.Component.UNSAFE_componentWillMount` + +*** + +### ~~UNSAFE\_componentWillReceiveProps()?~~ + +> `optional` **UNSAFE\_componentWillReceiveProps**(`nextProps`, `nextContext`): `void` + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@types/react/index.d.ts:1505 + +Called when the component may be receiving new props. +React may call this even if props have not changed, so be sure to compare new and existing +props if you only want to handle changes. + +Calling Component.setState generally does not trigger this method. + +This method will not stop working in React 17. + +Note: the presence of NewLifecycle.getSnapshotBeforeUpdate getSnapshotBeforeUpdate +or StaticLifecycle.getDerivedStateFromProps getDerivedStateFromProps prevents +this from being invoked. + +#### Parameters + +##### nextProps + +`Readonly`\<`P`\> + +##### nextContext + +`any` + +#### Returns + +`void` + +#### Deprecated + +16.3, use static StaticLifecycle.getDerivedStateFromProps getDerivedStateFromProps instead + +#### See + + - [https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#updating-state-based-on-props](https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#updating-state-based-on-props) + - [https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path](https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path) + +#### Inherited from + +`React.Component.UNSAFE_componentWillReceiveProps` + +*** + +### ~~UNSAFE\_componentWillUpdate()?~~ + +> `optional` **UNSAFE\_componentWillUpdate**(`nextProps`, `nextState`, `nextContext`): `void` + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@types/react/index.d.ts:1535 + +Called immediately before rendering when new props or state is received. Not called for the initial render. + +Note: You cannot call Component.setState here. + +This method will not stop working in React 17. + +Note: the presence of NewLifecycle.getSnapshotBeforeUpdate getSnapshotBeforeUpdate +or StaticLifecycle.getDerivedStateFromProps getDerivedStateFromProps prevents +this from being invoked. + +#### Parameters + +##### nextProps + +`Readonly`\<`P`\> + +##### nextState + +`Readonly`\<`S`\> + +##### nextContext + +`any` + +#### Returns + +`void` + +#### Deprecated + +16.3, use getSnapshotBeforeUpdate instead + +#### See + + - [https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#reading-dom-properties-before-an-update](https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#reading-dom-properties-before-an-update) + - [https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path](https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path) + +#### Inherited from + +`React.Component.UNSAFE_componentWillUpdate` + +*** + +### getDerivedStateFromError() + +> `static` **getDerivedStateFromError**(`error`): `State` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/feedback/ErrorBoundary.tsx:26](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/feedback/ErrorBoundary.tsx#L26) + +#### Parameters + +##### error + +`Error` + +#### Returns + +`State` diff --git a/frontend/.typedoc/app/components/feedback/ErrorSlime/README.md b/frontend/.typedoc/app/components/feedback/ErrorSlime/README.md new file mode 100644 index 00000000..6bd6ed18 --- /dev/null +++ b/frontend/.typedoc/app/components/feedback/ErrorSlime/README.md @@ -0,0 +1,17 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/components/feedback/ErrorSlime + +# app/components/feedback/ErrorSlime + +## Variables + +- [ErrorSlime](variables/ErrorSlime.md) + +## References + +### default + +Renames and re-exports [ErrorSlime](variables/ErrorSlime.md) diff --git a/frontend/.typedoc/app/components/feedback/ErrorSlime/variables/ErrorSlime.md b/frontend/.typedoc/app/components/feedback/ErrorSlime/variables/ErrorSlime.md new file mode 100644 index 00000000..0ead7aa6 --- /dev/null +++ b/frontend/.typedoc/app/components/feedback/ErrorSlime/variables/ErrorSlime.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/feedback/ErrorSlime](../README.md) / ErrorSlime + +# Variable: ErrorSlime + +> `const` **ErrorSlime**: `React.FC`\<\{ `size?`: `number`; \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/feedback/ErrorSlime.tsx:4](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/feedback/ErrorSlime.tsx#L4) + +Slime illustration with X eyes and red badge for errors/warnings. diff --git a/frontend/.typedoc/app/components/feedback/Loading/README.md b/frontend/.typedoc/app/components/feedback/Loading/README.md new file mode 100644 index 00000000..1836b333 --- /dev/null +++ b/frontend/.typedoc/app/components/feedback/Loading/README.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/components/feedback/Loading + +# app/components/feedback/Loading + +## Variables + +- [EmptyState](variables/EmptyState.md) +- [InlineSpinner](variables/InlineSpinner.md) +- [Skeleton](variables/Skeleton.md) diff --git a/frontend/.typedoc/app/components/feedback/Loading/variables/EmptyState.md b/frontend/.typedoc/app/components/feedback/Loading/variables/EmptyState.md new file mode 100644 index 00000000..7d0acd8a --- /dev/null +++ b/frontend/.typedoc/app/components/feedback/Loading/variables/EmptyState.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/feedback/Loading](../README.md) / EmptyState + +# Variable: EmptyState + +> `const` **EmptyState**: `React.FC`\<`EmptyStateProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/feedback/Loading.tsx:81](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/feedback/Loading.tsx#L81) diff --git a/frontend/.typedoc/app/components/feedback/Loading/variables/InlineSpinner.md b/frontend/.typedoc/app/components/feedback/Loading/variables/InlineSpinner.md new file mode 100644 index 00000000..ceac6ae0 --- /dev/null +++ b/frontend/.typedoc/app/components/feedback/Loading/variables/InlineSpinner.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/feedback/Loading](../README.md) / InlineSpinner + +# Variable: InlineSpinner + +> `const` **InlineSpinner**: `React.FC`\<`InlineSpinnerProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/feedback/Loading.tsx:68](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/feedback/Loading.tsx#L68) diff --git a/frontend/.typedoc/app/components/feedback/Loading/variables/Skeleton.md b/frontend/.typedoc/app/components/feedback/Loading/variables/Skeleton.md new file mode 100644 index 00000000..e6a3ff9e --- /dev/null +++ b/frontend/.typedoc/app/components/feedback/Loading/variables/Skeleton.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/feedback/Loading](../README.md) / Skeleton + +# Variable: Skeleton + +> `const` **Skeleton**: `React.FC`\<`SkeletonProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/feedback/Loading.tsx:19](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/feedback/Loading.tsx#L19) diff --git a/frontend/.typedoc/app/components/feedback/PixelBlast/README.md b/frontend/.typedoc/app/components/feedback/PixelBlast/README.md new file mode 100644 index 00000000..2f4ef480 --- /dev/null +++ b/frontend/.typedoc/app/components/feedback/PixelBlast/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/components/feedback/PixelBlast + +# app/components/feedback/PixelBlast + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/components/feedback/PixelBlast/variables/default.md b/frontend/.typedoc/app/components/feedback/PixelBlast/variables/default.md new file mode 100644 index 00000000..758059f0 --- /dev/null +++ b/frontend/.typedoc/app/components/feedback/PixelBlast/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/feedback/PixelBlast](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`PixelBlastProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/feedback/PixelBlast.tsx:184](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/feedback/PixelBlast.tsx#L184) diff --git a/frontend/.typedoc/app/components/overlays/DynamicIsland/README.md b/frontend/.typedoc/app/components/overlays/DynamicIsland/README.md new file mode 100644 index 00000000..2149bba5 --- /dev/null +++ b/frontend/.typedoc/app/components/overlays/DynamicIsland/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/components/overlays/DynamicIsland + +# app/components/overlays/DynamicIsland + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/components/overlays/DynamicIsland/variables/default.md b/frontend/.typedoc/app/components/overlays/DynamicIsland/variables/default.md new file mode 100644 index 00000000..fd04e379 --- /dev/null +++ b/frontend/.typedoc/app/components/overlays/DynamicIsland/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/overlays/DynamicIsland](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/overlays/DynamicIsland.tsx:227](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/overlays/DynamicIsland.tsx#L227) diff --git a/frontend/.typedoc/app/components/overlays/GlobalSearchPalette/README.md b/frontend/.typedoc/app/components/overlays/GlobalSearchPalette/README.md new file mode 100644 index 00000000..d50cf57c --- /dev/null +++ b/frontend/.typedoc/app/components/overlays/GlobalSearchPalette/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/components/overlays/GlobalSearchPalette + +# app/components/overlays/GlobalSearchPalette + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/components/overlays/GlobalSearchPalette/variables/default.md b/frontend/.typedoc/app/components/overlays/GlobalSearchPalette/variables/default.md new file mode 100644 index 00000000..6b575074 --- /dev/null +++ b/frontend/.typedoc/app/components/overlays/GlobalSearchPalette/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/overlays/GlobalSearchPalette](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/overlays/GlobalSearchPalette.tsx:60](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/overlays/GlobalSearchPalette.tsx#L60) diff --git a/frontend/.typedoc/app/components/overlays/PlanPicker/README.md b/frontend/.typedoc/app/components/overlays/PlanPicker/README.md new file mode 100644 index 00000000..9fada75a --- /dev/null +++ b/frontend/.typedoc/app/components/overlays/PlanPicker/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/components/overlays/PlanPicker + +# app/components/overlays/PlanPicker + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/components/overlays/PlanPicker/variables/default.md b/frontend/.typedoc/app/components/overlays/PlanPicker/variables/default.md new file mode 100644 index 00000000..05e2ec83 --- /dev/null +++ b/frontend/.typedoc/app/components/overlays/PlanPicker/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/overlays/PlanPicker](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`PlanPickerProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/overlays/PlanPicker.tsx:99](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/overlays/PlanPicker.tsx#L99) diff --git a/frontend/.typedoc/app/components/overlays/PlanPickerModal/README.md b/frontend/.typedoc/app/components/overlays/PlanPickerModal/README.md new file mode 100644 index 00000000..62ffdc34 --- /dev/null +++ b/frontend/.typedoc/app/components/overlays/PlanPickerModal/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/components/overlays/PlanPickerModal + +# app/components/overlays/PlanPickerModal + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/components/overlays/PlanPickerModal/variables/default.md b/frontend/.typedoc/app/components/overlays/PlanPickerModal/variables/default.md new file mode 100644 index 00000000..0ae7672e --- /dev/null +++ b/frontend/.typedoc/app/components/overlays/PlanPickerModal/variables/default.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/overlays/PlanPickerModal](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/overlays/PlanPickerModal.tsx:26](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/overlays/PlanPickerModal.tsx#L26) + +Centered modal around the compact PlanPicker; keeps pricing out of the page flow until asked for. diff --git a/frontend/.typedoc/app/components/overlays/SignInDialog/README.md b/frontend/.typedoc/app/components/overlays/SignInDialog/README.md new file mode 100644 index 00000000..6618204a --- /dev/null +++ b/frontend/.typedoc/app/components/overlays/SignInDialog/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/components/overlays/SignInDialog + +# app/components/overlays/SignInDialog + +## Functions + +- [default](functions/default.md) diff --git a/frontend/.typedoc/app/components/overlays/SignInDialog/functions/default.md b/frontend/.typedoc/app/components/overlays/SignInDialog/functions/default.md new file mode 100644 index 00000000..23dbeebc --- /dev/null +++ b/frontend/.typedoc/app/components/overlays/SignInDialog/functions/default.md @@ -0,0 +1,23 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/overlays/SignInDialog](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): [`Element`](../../../../../types/electron/namespaces/JSX/interfaces/Element.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/overlays/SignInDialog.tsx:27](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/overlays/SignInDialog.tsx#L27) + +## Parameters + +### \_\_namedParameters + +#### onClose + +() => `void` + +## Returns + +[`Element`](../../../../../types/electron/namespaces/JSX/interfaces/Element.md) diff --git a/frontend/.typedoc/app/components/overlays/TrustedFilePatterns/README.md b/frontend/.typedoc/app/components/overlays/TrustedFilePatterns/README.md new file mode 100644 index 00000000..304a417c --- /dev/null +++ b/frontend/.typedoc/app/components/overlays/TrustedFilePatterns/README.md @@ -0,0 +1,17 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/components/overlays/TrustedFilePatterns + +# app/components/overlays/TrustedFilePatterns + +## Variables + +- [TrustedFilePatterns](variables/TrustedFilePatterns.md) + +## References + +### default + +Renames and re-exports [TrustedFilePatterns](variables/TrustedFilePatterns.md) diff --git a/frontend/.typedoc/app/components/overlays/TrustedFilePatterns/variables/TrustedFilePatterns.md b/frontend/.typedoc/app/components/overlays/TrustedFilePatterns/variables/TrustedFilePatterns.md new file mode 100644 index 00000000..70670426 --- /dev/null +++ b/frontend/.typedoc/app/components/overlays/TrustedFilePatterns/variables/TrustedFilePatterns.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/components/overlays/TrustedFilePatterns](../README.md) / TrustedFilePatterns + +# Variable: TrustedFilePatterns + +> `const` **TrustedFilePatterns**: `React.FC` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/components/overlays/TrustedFilePatterns.tsx:45](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/components/overlays/TrustedFilePatterns.tsx#L45) diff --git a/frontend/.typedoc/app/pages/AgentChat/AgentChat/README.md b/frontend/.typedoc/app/pages/AgentChat/AgentChat/README.md new file mode 100644 index 00000000..c6bcce66 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/AgentChat/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/pages/AgentChat/AgentChat + +# app/pages/AgentChat/AgentChat + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/AgentChat/variables/default.md b/frontend/.typedoc/app/pages/AgentChat/AgentChat/variables/default.md new file mode 100644 index 00000000..028ffba7 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/AgentChat/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/AgentChat/AgentChat](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`AgentChatProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/AgentChat.tsx:249](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/AgentChat.tsx#L249) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/README.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/README.md new file mode 100644 index 00000000..35dfa8d1 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/README.md @@ -0,0 +1,35 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/pages/AgentChat/ChatInput + +# app/pages/AgentChat/ChatInput + +## Variables + +- [default](variables/default.md) + +## References + +### AttachedImage + +Re-exports [AttachedImage](types/interfaces/AttachedImage.md) + +*** + +### AttachedSkill + +Re-exports [AttachedSkill](../../../components/editor/richEditorUtils/interfaces/AttachedSkill.md) + +*** + +### ChatInputHandle + +Re-exports [ChatInputHandle](types/interfaces/ChatInputHandle.md) + +*** + +### ForcedToolGroup + +Re-exports [ForcedToolGroup](types/interfaces/ForcedToolGroup.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/helpers/README.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/helpers/README.md new file mode 100644 index 00000000..56e7e30c --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/helpers/README.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/ChatInput/helpers + +# app/pages/AgentChat/ChatInput/helpers + +## Functions + +- [basename](functions/basename.md) +- [formatTokenCount](functions/formatTokenCount.md) +- [pathTail](functions/pathTail.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/helpers/functions/basename.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/helpers/functions/basename.md new file mode 100644 index 00000000..f779741a --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/helpers/functions/basename.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/ChatInput/helpers](../README.md) / basename + +# Function: basename() + +> **basename**(`p`): `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/helpers.ts:10](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/helpers.ts#L10) + +## Parameters + +### p + +`string` + +## Returns + +`string` diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/helpers/functions/formatTokenCount.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/helpers/functions/formatTokenCount.md new file mode 100644 index 00000000..2fc61880 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/helpers/functions/formatTokenCount.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/ChatInput/helpers](../README.md) / formatTokenCount + +# Function: formatTokenCount() + +> **formatTokenCount**(`n`): `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/helpers.ts:1](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/helpers.ts#L1) + +## Parameters + +### n + +`number` + +## Returns + +`string` diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/helpers/functions/pathTail.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/helpers/functions/pathTail.md new file mode 100644 index 00000000..60244b48 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/helpers/functions/pathTail.md @@ -0,0 +1,25 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/ChatInput/helpers](../README.md) / pathTail + +# Function: pathTail() + +> **pathTail**(`p`, `n`): `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/helpers.ts:16](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/helpers.ts#L16) + +## Parameters + +### p + +`string` + +### n + +`number` + +## Returns + +`string` diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/draftStore/README.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/draftStore/README.md new file mode 100644 index 00000000..6cb57868 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/draftStore/README.md @@ -0,0 +1,14 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/AgentChat/ChatInput/hooks/draftStore + +# app/pages/AgentChat/ChatInput/hooks/draftStore + +## Functions + +- [deleteDraft](functions/deleteDraft.md) +- [loadDraft](functions/loadDraft.md) +- [scheduleDraftSave](functions/scheduleDraftSave.md) +- [useDraftLoad](functions/useDraftLoad.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/draftStore/functions/deleteDraft.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/draftStore/functions/deleteDraft.md new file mode 100644 index 00000000..0f1088c4 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/draftStore/functions/deleteDraft.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/hooks/draftStore](../README.md) / deleteDraft + +# Function: deleteDraft() + +> **deleteDraft**(`ownerId`): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/hooks/draftStore.ts:24](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/hooks/draftStore.ts#L24) + +## Parameters + +### ownerId + +`string` + +## Returns + +`void` diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/draftStore/functions/loadDraft.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/draftStore/functions/loadDraft.md new file mode 100644 index 00000000..e86d2be7 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/draftStore/functions/loadDraft.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/hooks/draftStore](../README.md) / loadDraft + +# Function: loadDraft() + +> **loadDraft**(`ownerId`): `string` \| `undefined` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/hooks/draftStore.ts:20](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/hooks/draftStore.ts#L20) + +## Parameters + +### ownerId + +`string` + +## Returns + +`string` \| `undefined` diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/draftStore/functions/scheduleDraftSave.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/draftStore/functions/scheduleDraftSave.md new file mode 100644 index 00000000..f39df431 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/draftStore/functions/scheduleDraftSave.md @@ -0,0 +1,25 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/hooks/draftStore](../README.md) / scheduleDraftSave + +# Function: scheduleDraftSave() + +> **scheduleDraftSave**(`ownerId`, `getHtml`): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/hooks/draftStore.ts:9](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/hooks/draftStore.ts#L9) + +## Parameters + +### ownerId + +`string` + +### getHtml + +() => `string` + +## Returns + +`void` diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/draftStore/functions/useDraftLoad.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/draftStore/functions/useDraftLoad.md new file mode 100644 index 00000000..144bcb09 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/draftStore/functions/useDraftLoad.md @@ -0,0 +1,25 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/hooks/draftStore](../README.md) / useDraftLoad + +# Function: useDraftLoad() + +> **useDraftLoad**(`editorRef`, `ownerId`): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/hooks/draftStore.ts:28](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/hooks/draftStore.ts#L28) + +## Parameters + +### editorRef + +`RefObject`\<`HTMLDivElement`\> + +### ownerId + +`string` + +## Returns + +`void` diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/pasteCards/README.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/pasteCards/README.md new file mode 100644 index 00000000..c7a77a81 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/pasteCards/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/AgentChat/ChatInput/hooks/pasteCards + +# app/pages/AgentChat/ChatInput/hooks/pasteCards + +## Functions + +- [tryPasteClipboardCards](functions/tryPasteClipboardCards.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/pasteCards/functions/tryPasteClipboardCards.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/pasteCards/functions/tryPasteClipboardCards.md new file mode 100644 index 00000000..290ad343 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/pasteCards/functions/tryPasteClipboardCards.md @@ -0,0 +1,27 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/hooks/pasteCards](../README.md) / tryPasteClipboardCards + +# Function: tryPasteClipboardCards() + +> **tryPasteClipboardCards**(`elementSelection`, `ownerId`): `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/hooks/pasteCards.ts:5](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/hooks/pasteCards.ts#L5) + +Drains the dashboard clipboard into owner-scoped selected elements. Returns true if it consumed the paste. + +## Parameters + +### elementSelection + +`ElementSelectionContextValue` \| `null` + +### ownerId + +`string` + +## Returns + +`boolean` diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/slashCommands/README.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/slashCommands/README.md new file mode 100644 index 00000000..8133d6f7 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/slashCommands/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/AgentChat/ChatInput/hooks/slashCommands + +# app/pages/AgentChat/ChatInput/hooks/slashCommands + +## Functions + +- [handleSlashCommand](functions/handleSlashCommand.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/slashCommands/functions/handleSlashCommand.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/slashCommands/functions/handleSlashCommand.md new file mode 100644 index 00000000..3c6f22ce --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/slashCommands/functions/handleSlashCommand.md @@ -0,0 +1,27 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/hooks/slashCommands](../README.md) / handleSlashCommand + +# Function: handleSlashCommand() + +> **handleSlashCommand**(`cmd`, `sessionId`): `Promise`\<`boolean`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/hooks/slashCommands.ts:4](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/hooks/slashCommands.ts#L4) + +Handles /context, /compact, /clear; returns true if intercepted so the prompt isn't sent to the agent. + +## Parameters + +### cmd + +`string` + +### sessionId + +`string` + +## Returns + +`Promise`\<`boolean`\> diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useChatInputModel/README.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useChatInputModel/README.md new file mode 100644 index 00000000..f070e213 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useChatInputModel/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/AgentChat/ChatInput/hooks/useChatInputModel + +# app/pages/AgentChat/ChatInput/hooks/useChatInputModel + +## Functions + +- [useChatInputModel](functions/useChatInputModel.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useChatInputModel/functions/useChatInputModel.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useChatInputModel/functions/useChatInputModel.md new file mode 100644 index 00000000..3c557224 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useChatInputModel/functions/useChatInputModel.md @@ -0,0 +1,49 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/hooks/useChatInputModel](../README.md) / useChatInputModel + +# Function: useChatInputModel() + +> **useChatInputModel**(`model`): `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/hooks/useChatInputModel.ts:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/hooks/useChatInputModel.ts#L11) + +## Parameters + +### model + +`string` + +## Returns + +`object` + +### allModelOptions + +> **allModelOptions**: `object` + +#### allModelOptions.flat + +> **flat**: `any`[] + +#### allModelOptions.grouped + +> **grouped**: `Record`\<`string`, `any`[]\> + +### currentModelApi + +> **currentModelApi**: `string` + +### currentModelCtx + +> **currentModelCtx**: `number` + +### imageSupported + +> **imageSupported**: `boolean` + +### pdfSupported + +> **pdfSupported**: `boolean` diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useContextFiles/README.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useContextFiles/README.md new file mode 100644 index 00000000..6a9a8237 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useContextFiles/README.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/AgentChat/ChatInput/hooks/useContextFiles + +# app/pages/AgentChat/ChatInput/hooks/useContextFiles + +## Type Aliases + +- [SendBlock](type-aliases/SendBlock.md) + +## Functions + +- [useContextFiles](functions/useContextFiles.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useContextFiles/functions/useContextFiles.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useContextFiles/functions/useContextFiles.md new file mode 100644 index 00000000..4541e899 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useContextFiles/functions/useContextFiles.md @@ -0,0 +1,159 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/hooks/useContextFiles](../README.md) / useContextFiles + +# Function: useContextFiles() + +> **useContextFiles**(`currentModelCtx`, `model`, `contextEstimate`, `sessionFrameworkOverhead`): `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/hooks/useContextFiles.ts:33](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/hooks/useContextFiles.ts#L33) + +## Parameters + +### currentModelCtx + +`number` + +### model + +`string` + +### contextEstimate + +\{ `limit`: `number`; `used`: `number`; \} \| `undefined` + +### sessionFrameworkOverhead + +`number` + +## Returns + +`object` + +### contextPaths + +> **contextPaths**: [`ContextPath`](../../../../../../components/editor/DirectoryBrowser/interfaces/ContextPath.md)[] + +### copiedPathIdx + +> **copiedPathIdx**: `number` \| `null` + +### detachAllOversize + +> **detachAllOversize**: () => `void` + +#### Returns + +`void` + +### detachOversize + +> **detachOversize**: (`path`) => `void` + +#### Parameters + +##### path + +`string` + +#### Returns + +`void` + +### forcedTools + +> **forcedTools**: [`ForcedToolGroup`](../../../types/interfaces/ForcedToolGroup.md)[] + +### isUploading + +> **isUploading**: `boolean` + +### oversizeQueue + +> **oversizeQueue**: `object`[] + +### pendingKinds + +> **pendingKinds**: `Set`\<`string`\> + +### pendingPayloadEstimate + +> **pendingPayloadEstimate**: `number` + +### pendingSendRef + +> **pendingSendRef**: `MutableRefObject`\<(() => `void`) \| `null`\> + +### sendBlock + +> **sendBlock**: [`SendBlock`](../type-aliases/SendBlock.md) + +### setContextPaths + +> **setContextPaths**: `Dispatch`\<`SetStateAction`\<[`ContextPath`](../../../../../../components/editor/DirectoryBrowser/interfaces/ContextPath.md)[]\>\> + +### setCopiedPathIdx + +> **setCopiedPathIdx**: `Dispatch`\<`SetStateAction`\<`number` \| `null`\>\> + +### setForcedTools + +> **setForcedTools**: `Dispatch`\<`SetStateAction`\<[`ForcedToolGroup`](../../../types/interfaces/ForcedToolGroup.md)[]\>\> + +### setSendBlock + +> **setSendBlock**: `Dispatch`\<`SetStateAction`\<[`SendBlock`](../type-aliases/SendBlock.md)\>\> + +### setSummarizeError + +> **setSummarizeError**: `Dispatch`\<`SetStateAction`\<`string` \| `null`\>\> + +### summarizeAllOversize + +> **summarizeAllOversize**: () => `Promise`\<`void`\> + +#### Returns + +`Promise`\<`void`\> + +### summarizeError + +> **summarizeError**: `string` \| `null` + +### summarizeOversize + +> **summarizeOversize**: (`path`) => `Promise`\<`void`\> + +#### Parameters + +##### path + +`string` + +#### Returns + +`Promise`\<`void`\> + +### summarizingAll + +> **summarizingAll**: `boolean` + +### summarizingPath + +> **summarizingPath**: `string` \| `null` + +### uploadAndAttachFiles + +> **uploadAndAttachFiles**: (`files`) => `Promise`\<`void`\> + +#### Parameters + +##### files + +`File`[] + +#### Returns + +`Promise`\<`void`\> diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useContextFiles/type-aliases/SendBlock.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useContextFiles/type-aliases/SendBlock.md new file mode 100644 index 00000000..c7b6c113 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useContextFiles/type-aliases/SendBlock.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/hooks/useContextFiles](../README.md) / SendBlock + +# Type Alias: SendBlock + +> **SendBlock** = `null` \| \{ `estimate`: `number`; `files`: `number`; `framework`: `number`; `history`: `number`; `kind`: `"compacting"` \| `"too_long"`; `largestFile?`: \{ `path`: `string`; `tokens`: `number`; \}; `prompt`: `number`; `system`: `number`; `window`: `number`; \} + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/hooks/useContextFiles.ts:19](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/hooks/useContextFiles.ts#L19) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useEditorHandlers/README.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useEditorHandlers/README.md new file mode 100644 index 00000000..5aa2bdba --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useEditorHandlers/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/AgentChat/ChatInput/hooks/useEditorHandlers + +# app/pages/AgentChat/ChatInput/hooks/useEditorHandlers + +## Functions + +- [useEditorHandlers](functions/useEditorHandlers.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useEditorHandlers/functions/useEditorHandlers.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useEditorHandlers/functions/useEditorHandlers.md new file mode 100644 index 00000000..e4113769 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useEditorHandlers/functions/useEditorHandlers.md @@ -0,0 +1,141 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/hooks/useEditorHandlers](../README.md) / useEditorHandlers + +# Function: useEditorHandlers() + +> **useEditorHandlers**(`p`): `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/hooks/useEditorHandlers.ts:59](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/hooks/useEditorHandlers.ts#L59) + +## Parameters + +### p + +`Params` + +## Returns + +`object` + +### handleDragLeave + +> **handleDragLeave**: (`e`) => `void` + +#### Parameters + +##### e + +`DragEvent` + +#### Returns + +`void` + +### handleDragOver + +> **handleDragOver**: (`e`) => `void` + +#### Parameters + +##### e + +`DragEvent` + +#### Returns + +`void` + +### handleDrop + +> **handleDrop**: (`e`) => `void` + +#### Parameters + +##### e + +`DragEvent` + +#### Returns + +`void` + +### handleEditorClick + +> **handleEditorClick**: () => `void` + +#### Returns + +`void` + +### handleInput + +> **handleInput**: () => `void` + +#### Returns + +`void` + +### handleKeyDown + +> **handleKeyDown**: (`e`) => `void` + +#### Parameters + +##### e + +`KeyboardEvent` + +#### Returns + +`void` + +### handlePaste + +> **handlePaste**: (`e`) => `void` + +#### Parameters + +##### e + +`ClipboardEvent` + +#### Returns + +`void` + +### handlePickerSelect + +> **handlePickerSelect**: (`item`) => `void` + +#### Parameters + +##### item + +[`CommandPickerItem`](../../../../../../components/editor/CommandPicker/interfaces/CommandPickerItem.md) + +#### Returns + +`void` + +### isDragOver + +> **isDragOver**: `boolean` + +### picker + +> **picker**: [`TriggerState`](../../../../../../components/editor/richEditorUtils/interfaces/TriggerState.md) + +### setPicker + +> **setPicker**: `Dispatch`\<`SetStateAction`\<[`TriggerState`](../../../../../../components/editor/richEditorUtils/interfaces/TriggerState.md)\>\> + +### updateHasContent + +> **updateHasContent**: () => `void` + +#### Returns + +`void` diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useImageAttachments/README.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useImageAttachments/README.md new file mode 100644 index 00000000..c9098148 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useImageAttachments/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/AgentChat/ChatInput/hooks/useImageAttachments + +# app/pages/AgentChat/ChatInput/hooks/useImageAttachments + +## Functions + +- [useImageAttachments](functions/useImageAttachments.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useImageAttachments/functions/useImageAttachments.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useImageAttachments/functions/useImageAttachments.md new file mode 100644 index 00000000..73e7ad6b --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useImageAttachments/functions/useImageAttachments.md @@ -0,0 +1,59 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/hooks/useImageAttachments](../README.md) / useImageAttachments + +# Function: useImageAttachments() + +> **useImageAttachments**(): `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/hooks/useImageAttachments.ts:4](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/hooks/useImageAttachments.ts#L4) + +## Returns + +`object` + +### addImageFiles + +> **addImageFiles**: (`files`) => `void` + +#### Parameters + +##### files + +`File`[] \| `FileList` + +#### Returns + +`void` + +### images + +> **images**: [`AttachedImage`](../../../types/interfaces/AttachedImage.md)[] + +### lightboxSrc + +> **lightboxSrc**: `string` \| `null` + +### removeImage + +> **removeImage**: (`idx`) => `void` + +#### Parameters + +##### idx + +`number` + +#### Returns + +`void` + +### setImages + +> **setImages**: `Dispatch`\<`SetStateAction`\<[`AttachedImage`](../../../types/interfaces/AttachedImage.md)[]\>\> + +### setLightboxSrc + +> **setLightboxSrc**: `Dispatch`\<`SetStateAction`\<`string` \| `null`\>\> diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useModelPicker/README.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useModelPicker/README.md new file mode 100644 index 00000000..4aaf9c28 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useModelPicker/README.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/AgentChat/ChatInput/hooks/useModelPicker + +# app/pages/AgentChat/ChatInput/hooks/useModelPicker + +## Type Aliases + +- [ModelPickerState](type-aliases/ModelPickerState.md) + +## Functions + +- [useModelPicker](functions/useModelPicker.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useModelPicker/functions/useModelPicker.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useModelPicker/functions/useModelPicker.md new file mode 100644 index 00000000..ce97a440 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useModelPicker/functions/useModelPicker.md @@ -0,0 +1,187 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/hooks/useModelPicker](../README.md) / useModelPicker + +# Function: useModelPicker() + +> **useModelPicker**(`allModelOptions`, `model`, `modelAnchor`): `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/hooks/useModelPicker.ts:23](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/hooks/useModelPicker.ts#L23) + +## Parameters + +### allModelOptions + +`AllModelOptions` + +### model + +`string` + +### modelAnchor + +`HTMLElement` \| `null` + +## Returns + +`object` + +### anyFilterActive + +> **anyFilterActive**: `boolean` + +### capFilters + +> **capFilters**: `CapFilters` + +### collapsedGroups + +> **collapsedGroups**: `Record`\<`string`, `boolean`\> + +### costIdx + +> **costIdx**: `number` + +### ctxIdx + +> **ctxIdx**: `number` + +### filteredModelGroups + +> **filteredModelGroups**: `Record`\<`string`, `any`[]\> + +### filtersExpanded + +> **filtersExpanded**: `boolean` + +### modelSearch + +> **modelSearch**: `string` + +### modelSearchRef + +> **modelSearchRef**: `MutableRefObject`\<`HTMLInputElement` \| `null`\> + +### pickerSummary + +> **pickerSummary**: `object` + +#### pickerSummary.apiKey + +> **apiKey**: `number` + +#### pickerSummary.free + +> **free**: `number` + +#### pickerSummary.longContext + +> **longContext**: `number` + +#### pickerSummary.paid + +> **paid**: `number` + +#### pickerSummary.reasoning + +> **reasoning**: `number` + +#### pickerSummary.subscription + +> **subscription**: `number` + +#### pickerSummary.total + +> **total**: `number` + +### probeResult + +> **probeResult**: \{ `error?`: `string`; `latency_ms?`: `number`; `ok`: `boolean`; `value`: `string`; \} \| `null` + +### pushRecentModel + +> **pushRecentModel**: (`value`) => `void` + +#### Parameters + +##### value + +`string` + +#### Returns + +`void` + +### pushRecentSearch + +> **pushRecentSearch**: (`q`) => `void` + +#### Parameters + +##### q + +`string` + +#### Returns + +`void` + +### recentMaterialised + +> **recentMaterialised**: `any`[] + +### recentModels + +> **recentModels**: `string`[] + +### recentSearches + +> **recentSearches**: `string`[] + +### setCapFilters + +> **setCapFilters**: `Dispatch`\<`SetStateAction`\<`CapFilters`\>\> + +### setCostIdx + +> **setCostIdx**: `Dispatch`\<`SetStateAction`\<`number`\>\> + +### setCtxIdx + +> **setCtxIdx**: `Dispatch`\<`SetStateAction`\<`number`\>\> + +### setModelSearch + +> **setModelSearch**: `Dispatch`\<`SetStateAction`\<`string`\>\> + +### showRecents + +> **showRecents**: `boolean` + +### toggleFilters + +> **toggleFilters**: () => `void` + +#### Returns + +`void` + +### toggleGroupCollapse + +> **toggleGroupCollapse**: (`prov`, `currentlyCollapsed`) => `void` + +#### Parameters + +##### prov + +`string` + +##### currentlyCollapsed + +`boolean` + +#### Returns + +`void` diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useModelPicker/type-aliases/ModelPickerState.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useModelPicker/type-aliases/ModelPickerState.md new file mode 100644 index 00000000..b9a9a24d --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/hooks/useModelPicker/type-aliases/ModelPickerState.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/hooks/useModelPicker](../README.md) / ModelPickerState + +# Type Alias: ModelPickerState + +> **ModelPickerState** = `ReturnType`\<*typeof* [`useModelPicker`](../functions/useModelPicker.md)\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/hooks/useModelPicker.ts:205](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/hooks/useModelPicker.ts#L205) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/modeConfig/README.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/modeConfig/README.md new file mode 100644 index 00000000..e3e8aedf --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/modeConfig/README.md @@ -0,0 +1,12 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/ChatInput/modeConfig + +# app/pages/AgentChat/ChatInput/modeConfig + +## Variables + +- [FALLBACK\_MODE\_BASE](variables/FALLBACK_MODE_BASE.md) +- [ICON\_MAP](variables/ICON_MAP.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/modeConfig/variables/FALLBACK_MODE_BASE.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/modeConfig/variables/FALLBACK_MODE_BASE.md new file mode 100644 index 00000000..3d8082c2 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/modeConfig/variables/FALLBACK_MODE_BASE.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/ChatInput/modeConfig](../README.md) / FALLBACK\_MODE\_BASE + +# Variable: FALLBACK\_MODE\_BASE + +> `const` **FALLBACK\_MODE\_BASE**: `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/modeConfig.tsx:16](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/modeConfig.tsx#L16) + +## Type Declaration + +### icon + +> **icon**: `ReactNode` = `ICON_MAP.smart_toy` + +### label + +> **label**: `string` = `'Agent'` diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/modeConfig/variables/ICON_MAP.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/modeConfig/variables/ICON_MAP.md new file mode 100644 index 00000000..b96fef71 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/modeConfig/variables/ICON_MAP.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/ChatInput/modeConfig](../README.md) / ICON\_MAP + +# Variable: ICON\_MAP + +> `const` **ICON\_MAP**: `Record`\<`string`, `React.ReactNode`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/modeConfig.tsx:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/modeConfig.tsx#L8) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/ModelPickerFooter/README.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/ModelPickerFooter/README.md new file mode 100644 index 00000000..f755f9b6 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/ModelPickerFooter/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/AgentChat/ChatInput/model-picker/ModelPickerFooter + +# app/pages/AgentChat/ChatInput/model-picker/ModelPickerFooter + +## Variables + +- [ModelPickerFooter](variables/ModelPickerFooter.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/ModelPickerFooter/variables/ModelPickerFooter.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/ModelPickerFooter/variables/ModelPickerFooter.md new file mode 100644 index 00000000..99d70e55 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/ModelPickerFooter/variables/ModelPickerFooter.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/model-picker/ModelPickerFooter](../README.md) / ModelPickerFooter + +# Variable: ModelPickerFooter + +> `const` **ModelPickerFooter**: `React.FC`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/model-picker/ModelPickerFooter.tsx:14](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/model-picker/ModelPickerFooter.tsx#L14) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/ModelPickerHeader/README.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/ModelPickerHeader/README.md new file mode 100644 index 00000000..d67d4c73 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/ModelPickerHeader/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/AgentChat/ChatInput/model-picker/ModelPickerHeader + +# app/pages/AgentChat/ChatInput/model-picker/ModelPickerHeader + +## Variables + +- [ModelPickerHeader](variables/ModelPickerHeader.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/ModelPickerHeader/variables/ModelPickerHeader.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/ModelPickerHeader/variables/ModelPickerHeader.md new file mode 100644 index 00000000..3a3665f3 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/ModelPickerHeader/variables/ModelPickerHeader.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/model-picker/ModelPickerHeader](../README.md) / ModelPickerHeader + +# Variable: ModelPickerHeader + +> `const` **ModelPickerHeader**: `React.FC`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/model-picker/ModelPickerHeader.tsx:32](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/model-picker/ModelPickerHeader.tsx#L32) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/ModelPickerList/README.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/ModelPickerList/README.md new file mode 100644 index 00000000..6096a22d --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/ModelPickerList/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/AgentChat/ChatInput/model-picker/ModelPickerList + +# app/pages/AgentChat/ChatInput/model-picker/ModelPickerList + +## Variables + +- [ModelPickerList](variables/ModelPickerList.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/ModelPickerList/variables/ModelPickerList.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/ModelPickerList/variables/ModelPickerList.md new file mode 100644 index 00000000..bfcc15d8 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/ModelPickerList/variables/ModelPickerList.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/model-picker/ModelPickerList](../README.md) / ModelPickerList + +# Variable: ModelPickerList + +> `const` **ModelPickerList**: `React.FC`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/model-picker/ModelPickerList.tsx:35](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/model-picker/ModelPickerList.tsx#L35) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/ModelPickerMenu/README.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/ModelPickerMenu/README.md new file mode 100644 index 00000000..58990680 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/ModelPickerMenu/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/AgentChat/ChatInput/model-picker/ModelPickerMenu + +# app/pages/AgentChat/ChatInput/model-picker/ModelPickerMenu + +## Variables + +- [ModelPickerMenu](variables/ModelPickerMenu.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/ModelPickerMenu/variables/ModelPickerMenu.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/ModelPickerMenu/variables/ModelPickerMenu.md new file mode 100644 index 00000000..f1e7753d --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/ModelPickerMenu/variables/ModelPickerMenu.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/model-picker/ModelPickerMenu](../README.md) / ModelPickerMenu + +# Variable: ModelPickerMenu + +> `const` **ModelPickerMenu**: `React.FC`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/model-picker/ModelPickerMenu.tsx:46](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/model-picker/ModelPickerMenu.tsx#L46) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/ModelPickerRecents/README.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/ModelPickerRecents/README.md new file mode 100644 index 00000000..a74faacf --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/ModelPickerRecents/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/AgentChat/ChatInput/model-picker/ModelPickerRecents + +# app/pages/AgentChat/ChatInput/model-picker/ModelPickerRecents + +## Variables + +- [ModelPickerRecents](variables/ModelPickerRecents.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/ModelPickerRecents/variables/ModelPickerRecents.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/ModelPickerRecents/variables/ModelPickerRecents.md new file mode 100644 index 00000000..26364f01 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/ModelPickerRecents/variables/ModelPickerRecents.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/model-picker/ModelPickerRecents](../README.md) / ModelPickerRecents + +# Variable: ModelPickerRecents + +> `const` **ModelPickerRecents**: `React.FC`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/model-picker/ModelPickerRecents.tsx:25](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/model-picker/ModelPickerRecents.tsx#L25) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/README.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/README.md new file mode 100644 index 00000000..f57dc479 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/README.md @@ -0,0 +1,35 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/AgentChat/ChatInput/model-picker/modelPicker + +# app/pages/AgentChat/ChatInput/model-picker/modelPicker + +## Type Aliases + +- [Tier](type-aliases/Tier.md) + +## Variables + +- [COST\_LABELS](variables/COST_LABELS.md) +- [COST\_STEPS](variables/COST_STEPS.md) +- [CTX\_LABELS](variables/CTX_LABELS.md) +- [CTX\_STEPS](variables/CTX_STEPS.md) +- [LS\_COLLAPSED\_GROUPS](variables/LS_COLLAPSED_GROUPS.md) +- [LS\_FILTERS\_EXPANDED](variables/LS_FILTERS_EXPANDED.md) +- [LS\_RECENT\_MODELS](variables/LS_RECENT_MODELS.md) +- [LS\_RECENT\_SEARCHES](variables/LS_RECENT_SEARCHES.md) +- [OR\_AUTO\_COLLAPSE\_THRESHOLD](variables/OR_AUTO_COLLAPSE_THRESHOLD.md) +- [PROVIDER\_COLORS](variables/PROVIDER_COLORS.md) +- [RECENT\_MODELS\_MAX](variables/RECENT_MODELS_MAX.md) +- [RECENT\_SEARCHES\_MAX](variables/RECENT_SEARCHES_MAX.md) + +## Functions + +- [readLS](functions/readLS.md) +- [sortModelsForPicker](functions/sortModelsForPicker.md) +- [tierCost](functions/tierCost.md) +- [tierIntelligence](functions/tierIntelligence.md) +- [tierSpeed](functions/tierSpeed.md) +- [writeLS](functions/writeLS.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/functions/readLS.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/functions/readLS.md new file mode 100644 index 00000000..ae00f376 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/functions/readLS.md @@ -0,0 +1,31 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/model-picker/modelPicker](../README.md) / readLS + +# Function: readLS() + +> **readLS**\<`T`\>(`key`, `fallback`): `T` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts:30](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts#L30) + +## Type Parameters + +### T + +`T` + +## Parameters + +### key + +`string` + +### fallback + +`T` + +## Returns + +`T` diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/functions/sortModelsForPicker.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/functions/sortModelsForPicker.md new file mode 100644 index 00000000..3b47a631 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/functions/sortModelsForPicker.md @@ -0,0 +1,29 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/model-picker/modelPicker](../README.md) / sortModelsForPicker + +# Function: sortModelsForPicker() + +> **sortModelsForPicker**\<`T`\>(`models`): `T`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts:96](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts#L96) + +Sort: intelligence desc, family asc, version desc, label asc. + +## Type Parameters + +### T + +`T` *extends* `object` + +## Parameters + +### models + +`T`[] + +## Returns + +`T`[] diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/functions/tierCost.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/functions/tierCost.md new file mode 100644 index 00000000..95abed49 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/functions/tierCost.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/model-picker/modelPicker](../README.md) / tierCost + +# Function: tierCost() + +> **tierCost**(`opt`): [`Tier`](../type-aliases/Tier.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts:70](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts#L70) + +## Parameters + +### opt + +`any` + +## Returns + +[`Tier`](../type-aliases/Tier.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/functions/tierIntelligence.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/functions/tierIntelligence.md new file mode 100644 index 00000000..7c0d60f5 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/functions/tierIntelligence.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/model-picker/modelPicker](../README.md) / tierIntelligence + +# Function: tierIntelligence() + +> **tierIntelligence**(`opt`): [`Tier`](../type-aliases/Tier.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts:55](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts#L55) + +## Parameters + +### opt + +`any` + +## Returns + +[`Tier`](../type-aliases/Tier.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/functions/tierSpeed.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/functions/tierSpeed.md new file mode 100644 index 00000000..74bfffc2 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/functions/tierSpeed.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/model-picker/modelPicker](../README.md) / tierSpeed + +# Function: tierSpeed() + +> **tierSpeed**(`opt`): [`Tier`](../type-aliases/Tier.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts:61](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts#L61) + +## Parameters + +### opt + +`any` + +## Returns + +[`Tier`](../type-aliases/Tier.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/functions/writeLS.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/functions/writeLS.md new file mode 100644 index 00000000..a631847c --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/functions/writeLS.md @@ -0,0 +1,25 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/model-picker/modelPicker](../README.md) / writeLS + +# Function: writeLS() + +> **writeLS**(`key`, `value`): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts:39](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts#L39) + +## Parameters + +### key + +`string` + +### value + +`unknown` + +## Returns + +`void` diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/type-aliases/Tier.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/type-aliases/Tier.md new file mode 100644 index 00000000..ed07d935 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/type-aliases/Tier.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/model-picker/modelPicker](../README.md) / Tier + +# Type Alias: Tier + +> **Tier** = `1` \| `2` \| `3` \| `4` \| `5` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts:44](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts#L44) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/COST_LABELS.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/COST_LABELS.md new file mode 100644 index 00000000..7218a83d --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/COST_LABELS.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/model-picker/modelPicker](../README.md) / COST\_LABELS + +# Variable: COST\_LABELS + +> `const` **COST\_LABELS**: `string`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts:28](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts#L28) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/COST_STEPS.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/COST_STEPS.md new file mode 100644 index 00000000..8d6b68b8 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/COST_STEPS.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/model-picker/modelPicker](../README.md) / COST\_STEPS + +# Variable: COST\_STEPS + +> `const` **COST\_STEPS**: `number`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts:27](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts#L27) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/CTX_LABELS.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/CTX_LABELS.md new file mode 100644 index 00000000..9623c217 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/CTX_LABELS.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/model-picker/modelPicker](../README.md) / CTX\_LABELS + +# Variable: CTX\_LABELS + +> `const` **CTX\_LABELS**: `string`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts:26](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts#L26) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/CTX_STEPS.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/CTX_STEPS.md new file mode 100644 index 00000000..7eca974f --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/CTX_STEPS.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/model-picker/modelPicker](../README.md) / CTX\_STEPS + +# Variable: CTX\_STEPS + +> `const` **CTX\_STEPS**: `number`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts:25](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts#L25) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/LS_COLLAPSED_GROUPS.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/LS_COLLAPSED_GROUPS.md new file mode 100644 index 00000000..9e54066f --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/LS_COLLAPSED_GROUPS.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/model-picker/modelPicker](../README.md) / LS\_COLLAPSED\_GROUPS + +# Variable: LS\_COLLAPSED\_GROUPS + +> `const` **LS\_COLLAPSED\_GROUPS**: `"openswarm.picker.collapsedGroups"` = `'openswarm.picker.collapsedGroups'` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts:23](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts#L23) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/LS_FILTERS_EXPANDED.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/LS_FILTERS_EXPANDED.md new file mode 100644 index 00000000..2b022537 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/LS_FILTERS_EXPANDED.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/model-picker/modelPicker](../README.md) / LS\_FILTERS\_EXPANDED + +# Variable: LS\_FILTERS\_EXPANDED + +> `const` **LS\_FILTERS\_EXPANDED**: `"openswarm.picker.filtersExpanded"` = `'openswarm.picker.filtersExpanded'` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts:22](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts#L22) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/LS_RECENT_MODELS.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/LS_RECENT_MODELS.md new file mode 100644 index 00000000..5f407cc4 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/LS_RECENT_MODELS.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/model-picker/modelPicker](../README.md) / LS\_RECENT\_MODELS + +# Variable: LS\_RECENT\_MODELS + +> `const` **LS\_RECENT\_MODELS**: `"openswarm.picker.recentModels"` = `'openswarm.picker.recentModels'` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts:16](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts#L16) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/LS_RECENT_SEARCHES.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/LS_RECENT_SEARCHES.md new file mode 100644 index 00000000..b4346852 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/LS_RECENT_SEARCHES.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/model-picker/modelPicker](../README.md) / LS\_RECENT\_SEARCHES + +# Variable: LS\_RECENT\_SEARCHES + +> `const` **LS\_RECENT\_SEARCHES**: `"openswarm.picker.recentSearches"` = `'openswarm.picker.recentSearches'` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts:17](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts#L17) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/OR_AUTO_COLLAPSE_THRESHOLD.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/OR_AUTO_COLLAPSE_THRESHOLD.md new file mode 100644 index 00000000..0834aaf0 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/OR_AUTO_COLLAPSE_THRESHOLD.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/model-picker/modelPicker](../README.md) / OR\_AUTO\_COLLAPSE\_THRESHOLD + +# Variable: OR\_AUTO\_COLLAPSE\_THRESHOLD + +> `const` **OR\_AUTO\_COLLAPSE\_THRESHOLD**: `12` = `12` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts:20](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts#L20) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/PROVIDER_COLORS.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/PROVIDER_COLORS.md new file mode 100644 index 00000000..48a9f282 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/PROVIDER_COLORS.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/model-picker/modelPicker](../README.md) / PROVIDER\_COLORS + +# Variable: PROVIDER\_COLORS + +> `const` **PROVIDER\_COLORS**: `Record`\<`string`, `string`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts:2](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts#L2) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/RECENT_MODELS_MAX.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/RECENT_MODELS_MAX.md new file mode 100644 index 00000000..a04bc542 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/RECENT_MODELS_MAX.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/model-picker/modelPicker](../README.md) / RECENT\_MODELS\_MAX + +# Variable: RECENT\_MODELS\_MAX + +> `const` **RECENT\_MODELS\_MAX**: `3` = `3` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts:18](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts#L18) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/RECENT_SEARCHES_MAX.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/RECENT_SEARCHES_MAX.md new file mode 100644 index 00000000..174ec582 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelPicker/variables/RECENT_SEARCHES_MAX.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/model-picker/modelPicker](../README.md) / RECENT\_SEARCHES\_MAX + +# Variable: RECENT\_SEARCHES\_MAX + +> `const` **RECENT\_SEARCHES\_MAX**: `4` = `4` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts:19](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelPicker.ts#L19) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelTooltip/README.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelTooltip/README.md new file mode 100644 index 00000000..a93aee23 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelTooltip/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/AgentChat/ChatInput/model-picker/modelTooltip + +# app/pages/AgentChat/ChatInput/model-picker/modelTooltip + +## Functions + +- [useModelTooltip](functions/useModelTooltip.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelTooltip/functions/useModelTooltip.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelTooltip/functions/useModelTooltip.md new file mode 100644 index 00000000..45486f64 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/model-picker/modelTooltip/functions/useModelTooltip.md @@ -0,0 +1,103 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/model-picker/modelTooltip](../README.md) / useModelTooltip + +# Function: useModelTooltip() + +> **useModelTooltip**(`c`): `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelTooltip.tsx:6](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/model-picker/modelTooltip.tsx#L6) + +## Parameters + +### c + +[`ClaudeTokens`](../../../../../../../shared/styles/claudeTokens/interfaces/ClaudeTokens.md) + +## Returns + +`object` + +### buildModelTooltip + +> **buildModelTooltip**: (`opt`) => `ReactNode` + +#### Parameters + +##### opt + +`any` + +#### Returns + +`ReactNode` + +### tooltipSlotProps + +> **tooltipSlotProps**: `object` + +#### tooltipSlotProps.arrow + +> **arrow**: `object` + +#### tooltipSlotProps.arrow.sx + +> **sx**: `object` + +#### tooltipSlotProps.arrow.sx.&:before + +> **&:before**: `object` + +#### tooltipSlotProps.arrow.sx.&:before.border + +> **border**: `string` + +#### tooltipSlotProps.arrow.sx.color + +> **color**: `string` = `c.bg.elevated` + +#### tooltipSlotProps.tooltip + +> **tooltip**: `object` + +#### tooltipSlotProps.tooltip.sx + +> **sx**: `object` + +#### tooltipSlotProps.tooltip.sx.bgcolor + +> **bgcolor**: `string` = `c.bg.elevated` + +#### tooltipSlotProps.tooltip.sx.border + +> **border**: `string` + +#### tooltipSlotProps.tooltip.sx.borderRadius + +> **borderRadius**: `string` + +#### tooltipSlotProps.tooltip.sx.boxShadow + +> **boxShadow**: `string` = `'0 12px 32px rgba(0, 0, 0, 0.32)'` + +#### tooltipSlotProps.tooltip.sx.color + +> **color**: `string` = `c.text.primary` + +#### tooltipSlotProps.tooltip.sx.fontFamily + +> **fontFamily**: `string` = `c.font.sans` + +#### tooltipSlotProps.tooltip.sx.fontSize + +> **fontSize**: `string` = `'0.78rem'` + +#### tooltipSlotProps.tooltip.sx.maxWidth + +> **maxWidth**: `number` = `340` + +#### tooltipSlotProps.tooltip.sx.padding + +> **padding**: `string` = `'12px 14px'` diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/sendHelpers/README.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/sendHelpers/README.md new file mode 100644 index 00000000..9afa4cdb --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/sendHelpers/README.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/ChatInput/sendHelpers + +# app/pages/AgentChat/ChatInput/sendHelpers + +## Functions + +- [appendSelectedElements](functions/appendSelectedElements.md) +- [computeSendBlock](functions/computeSendBlock.md) +- [materializeImages](functions/materializeImages.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/sendHelpers/functions/appendSelectedElements.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/sendHelpers/functions/appendSelectedElements.md new file mode 100644 index 00000000..8f50d2b1 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/sendHelpers/functions/appendSelectedElements.md @@ -0,0 +1,31 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/ChatInput/sendHelpers](../README.md) / appendSelectedElements + +# Function: appendSelectedElements() + +> **appendSelectedElements**(`trimmed`, `selectedEls`, `allImages`): `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/sendHelpers.ts:79](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/sendHelpers.ts#L79) + +Appends a human-readable Selected UI Elements block to the prompt and pushes any element screenshots into allImages. + +## Parameters + +### trimmed + +`string` + +### selectedEls + +[`SelectedElement`](../../../../../components/editor/ElementSelectionContext/interfaces/SelectedElement.md)[] + +### allImages + +`OutImage`[] + +## Returns + +`string` diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/sendHelpers/functions/computeSendBlock.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/sendHelpers/functions/computeSendBlock.md new file mode 100644 index 00000000..e9881920 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/sendHelpers/functions/computeSendBlock.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/ChatInput/sendHelpers](../README.md) / computeSendBlock + +# Function: computeSendBlock() + +> **computeSendBlock**(`__namedParameters`): \{ `estimate`: `number`; `files`: `number`; `framework`: `number`; `history`: `number`; `kind`: `"compacting"` \| `"too_long"`; `largestFile?`: \{ `path`: `string`; `tokens`: `number`; \}; `prompt`: `number`; `system`: `number`; `window`: `number`; \} \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/sendHelpers.ts:25](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/sendHelpers.ts#L25) + +## Parameters + +### \_\_namedParameters + +`SendBlockInputs` + +## Returns + +\{ `estimate`: `number`; `files`: `number`; `framework`: `number`; `history`: `number`; `kind`: `"compacting"` \| `"too_long"`; `largestFile?`: \{ `path`: `string`; `tokens`: `number`; \}; `prompt`: `number`; `system`: `number`; `window`: `number`; \} \| `null` diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/sendHelpers/functions/materializeImages.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/sendHelpers/functions/materializeImages.md new file mode 100644 index 00000000..50484ec2 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/sendHelpers/functions/materializeImages.md @@ -0,0 +1,23 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/ChatInput/sendHelpers](../README.md) / materializeImages + +# Function: materializeImages() + +> **materializeImages**(`images`): `Promise`\<`OutImage`[]\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/sendHelpers.ts:57](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/sendHelpers.ts#L57) + +Materialize blob-backed previews to base64 only at send; filters out empties. + +## Parameters + +### images + +[`AttachedImage`](../../types/interfaces/AttachedImage.md)[] + +## Returns + +`Promise`\<`OutImage`[]\> diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/toolbar/ChatInputToolbar/README.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/toolbar/ChatInputToolbar/README.md new file mode 100644 index 00000000..03708bf1 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/toolbar/ChatInputToolbar/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/AgentChat/ChatInput/toolbar/ChatInputToolbar + +# app/pages/AgentChat/ChatInput/toolbar/ChatInputToolbar + +## Variables + +- [ChatInputToolbar](variables/ChatInputToolbar.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/toolbar/ChatInputToolbar/variables/ChatInputToolbar.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/toolbar/ChatInputToolbar/variables/ChatInputToolbar.md new file mode 100644 index 00000000..2edb76c7 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/toolbar/ChatInputToolbar/variables/ChatInputToolbar.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/toolbar/ChatInputToolbar](../README.md) / ChatInputToolbar + +# Variable: ChatInputToolbar + +> `const` **ChatInputToolbar**: `React.FC`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/toolbar/ChatInputToolbar.tsx:53](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/toolbar/ChatInputToolbar.tsx#L53) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/toolbar/ContextRing/README.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/toolbar/ContextRing/README.md new file mode 100644 index 00000000..f9912d35 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/toolbar/ContextRing/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/AgentChat/ChatInput/toolbar/ContextRing + +# app/pages/AgentChat/ChatInput/toolbar/ContextRing + +## Variables + +- [ContextRing](variables/ContextRing.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/toolbar/ContextRing/variables/ContextRing.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/toolbar/ContextRing/variables/ContextRing.md new file mode 100644 index 00000000..b497afb1 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/toolbar/ContextRing/variables/ContextRing.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/toolbar/ContextRing](../README.md) / ContextRing + +# Variable: ContextRing + +> `const` **ContextRing**: `React.FC`\<\{ `accentColor`: `string`; `limit`: `number`; `trackColor`: `string`; `used`: `number`; \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/toolbar/ContextRing.tsx:6](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/toolbar/ContextRing.tsx#L6) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/toolbar/ModeControl/README.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/toolbar/ModeControl/README.md new file mode 100644 index 00000000..ed97552c --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/toolbar/ModeControl/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/AgentChat/ChatInput/toolbar/ModeControl + +# app/pages/AgentChat/ChatInput/toolbar/ModeControl + +## Variables + +- [ModeControl](variables/ModeControl.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/toolbar/ModeControl/variables/ModeControl.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/toolbar/ModeControl/variables/ModeControl.md new file mode 100644 index 00000000..dcc1838c --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/toolbar/ModeControl/variables/ModeControl.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/toolbar/ModeControl](../README.md) / ModeControl + +# Variable: ModeControl + +> `const` **ModeControl**: `React.FC`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/toolbar/ModeControl.tsx:28](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/toolbar/ModeControl.tsx#L28) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/toolbar/ThinkingLevelControl/README.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/toolbar/ThinkingLevelControl/README.md new file mode 100644 index 00000000..3d97c56b --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/toolbar/ThinkingLevelControl/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/AgentChat/ChatInput/toolbar/ThinkingLevelControl + +# app/pages/AgentChat/ChatInput/toolbar/ThinkingLevelControl + +## Variables + +- [ThinkingLevelControl](variables/ThinkingLevelControl.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/toolbar/ThinkingLevelControl/variables/ThinkingLevelControl.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/toolbar/ThinkingLevelControl/variables/ThinkingLevelControl.md new file mode 100644 index 00000000..ffa21e42 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/toolbar/ThinkingLevelControl/variables/ThinkingLevelControl.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/toolbar/ThinkingLevelControl](../README.md) / ThinkingLevelControl + +# Variable: ThinkingLevelControl + +> `const` **ThinkingLevelControl**: `React.FC`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/toolbar/ThinkingLevelControl.tsx:23](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/toolbar/ThinkingLevelControl.tsx#L23) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/toolbar/ToolbarActions/README.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/toolbar/ToolbarActions/README.md new file mode 100644 index 00000000..377f9e5f --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/toolbar/ToolbarActions/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/AgentChat/ChatInput/toolbar/ToolbarActions + +# app/pages/AgentChat/ChatInput/toolbar/ToolbarActions + +## Variables + +- [ToolbarActions](variables/ToolbarActions.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/toolbar/ToolbarActions/variables/ToolbarActions.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/toolbar/ToolbarActions/variables/ToolbarActions.md new file mode 100644 index 00000000..8fcd0ee3 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/toolbar/ToolbarActions/variables/ToolbarActions.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/toolbar/ToolbarActions](../README.md) / ToolbarActions + +# Variable: ToolbarActions + +> `const` **ToolbarActions**: `React.FC`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/toolbar/ToolbarActions.tsx:29](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/toolbar/ToolbarActions.tsx#L29) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/types/README.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/types/README.md new file mode 100644 index 00000000..f9ff1b60 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/types/README.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/ChatInput/types + +# app/pages/AgentChat/ChatInput/types + +## Interfaces + +- [AttachedImage](interfaces/AttachedImage.md) +- [ChatInputHandle](interfaces/ChatInputHandle.md) +- [ForcedToolGroup](interfaces/ForcedToolGroup.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/types/interfaces/AttachedImage.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/types/interfaces/AttachedImage.md new file mode 100644 index 00000000..c5137646 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/types/interfaces/AttachedImage.md @@ -0,0 +1,41 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/ChatInput/types](../README.md) / AttachedImage + +# Interface: AttachedImage + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/types.ts:4](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/types.ts#L4) + +## Properties + +### \_file? + +> `optional` **\_file?**: `File` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/types.ts:9](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/types.ts#L9) + +*** + +### data + +> **data**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/types.ts:5](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/types.ts#L5) + +*** + +### media\_type + +> **media\_type**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/types.ts:6](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/types.ts#L6) + +*** + +### preview + +> **preview**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/types.ts:7](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/types.ts#L7) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/types/interfaces/ChatInputHandle.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/types/interfaces/ChatInputHandle.md new file mode 100644 index 00000000..03f5a193 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/types/interfaces/ChatInputHandle.md @@ -0,0 +1,59 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/ChatInput/types](../README.md) / ChatInputHandle + +# Interface: ChatInputHandle + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/types.ts:19](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/types.ts#L19) + +## Properties + +### getConfig + +> **getConfig**: () => `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/types.ts:20](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/types.ts#L20) + +#### Returns + +`object` + +##### contextPaths + +> **contextPaths**: [`ContextPath`](../../../../../components/editor/DirectoryBrowser/interfaces/ContextPath.md)[] + +##### forcedTools + +> **forcedTools**: [`ForcedToolGroup`](ForcedToolGroup.md)[] + +##### prompt + +> **prompt**: `string` + +*** + +### setContent + +> **setContent**: (`prompt`, `contextPaths?`, `forcedTools?`) => `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/types.ts:21](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/types.ts#L21) + +#### Parameters + +##### prompt + +`string` + +##### contextPaths? + +[`ContextPath`](../../../../../components/editor/DirectoryBrowser/interfaces/ContextPath.md)[] + +##### forcedTools? + +[`ForcedToolGroup`](ForcedToolGroup.md)[] + +#### Returns + +`void` diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/types/interfaces/ForcedToolGroup.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/types/interfaces/ForcedToolGroup.md new file mode 100644 index 00000000..a9f53475 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/types/interfaces/ForcedToolGroup.md @@ -0,0 +1,41 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/ChatInput/types](../README.md) / ForcedToolGroup + +# Interface: ForcedToolGroup + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/types.ts:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/types.ts#L12) + +## Properties + +### icon? + +> `optional` **icon?**: `ReactNode` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/types.ts:15](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/types.ts#L15) + +*** + +### iconKey? + +> `optional` **iconKey?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/types.ts:16](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/types.ts#L16) + +*** + +### label + +> **label**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/types.ts:13](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/types.ts#L13) + +*** + +### tools + +> **tools**: `string`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/types.ts:14](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/types.ts#L14) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/variables/default.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/variables/default.md new file mode 100644 index 00000000..79aa849d --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/AgentChat/ChatInput](../README.md) / default + +# Variable: default + +> **default**: `MemoExoticComponent`\<`ForwardRefExoticComponent`\<`Props` & `RefAttributes`\<[`ChatInputHandle`](../types/interfaces/ChatInputHandle.md)\>\>\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput.tsx:393](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput.tsx#L393) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/view/AttachmentChips/README.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/view/AttachmentChips/README.md new file mode 100644 index 00000000..85471a8c --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/view/AttachmentChips/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/AgentChat/ChatInput/view/AttachmentChips + +# app/pages/AgentChat/ChatInput/view/AttachmentChips + +## Variables + +- [AttachmentChips](variables/AttachmentChips.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/view/AttachmentChips/variables/AttachmentChips.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/view/AttachmentChips/variables/AttachmentChips.md new file mode 100644 index 00000000..a82f0d09 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/view/AttachmentChips/variables/AttachmentChips.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/view/AttachmentChips](../README.md) / AttachmentChips + +# Variable: AttachmentChips + +> `const` **AttachmentChips**: `React.FC`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/view/AttachmentChips.tsx:39](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/view/AttachmentChips.tsx#L39) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/view/ChatInputOverlays/README.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/view/ChatInputOverlays/README.md new file mode 100644 index 00000000..903dfa8e --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/view/ChatInputOverlays/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/AgentChat/ChatInput/view/ChatInputOverlays + +# app/pages/AgentChat/ChatInput/view/ChatInputOverlays + +## Variables + +- [ChatInputOverlays](variables/ChatInputOverlays.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/view/ChatInputOverlays/variables/ChatInputOverlays.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/view/ChatInputOverlays/variables/ChatInputOverlays.md new file mode 100644 index 00000000..cf45ba3a --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/view/ChatInputOverlays/variables/ChatInputOverlays.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/view/ChatInputOverlays](../README.md) / ChatInputOverlays + +# Variable: ChatInputOverlays + +> `const` **ChatInputOverlays**: `React.FC`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/view/ChatInputOverlays.tsx:160](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/view/ChatInputOverlays.tsx#L160) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/view/ChatInputView/README.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/view/ChatInputView/README.md new file mode 100644 index 00000000..fd2eed47 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/view/ChatInputView/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/AgentChat/ChatInput/view/ChatInputView + +# app/pages/AgentChat/ChatInput/view/ChatInputView + +## Variables + +- [ChatInputView](variables/ChatInputView.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/view/ChatInputView/variables/ChatInputView.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/view/ChatInputView/variables/ChatInputView.md new file mode 100644 index 00000000..1b97c7cf --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/view/ChatInputView/variables/ChatInputView.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/view/ChatInputView](../README.md) / ChatInputView + +# Variable: ChatInputView + +> `const` **ChatInputView**: `React.FC`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/view/ChatInputView.tsx:103](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/view/ChatInputView.tsx#L103) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/view/EditorSurface/README.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/view/EditorSurface/README.md new file mode 100644 index 00000000..767bdf66 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/view/EditorSurface/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/AgentChat/ChatInput/view/EditorSurface + +# app/pages/AgentChat/ChatInput/view/EditorSurface + +## Variables + +- [EditorSurface](variables/EditorSurface.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/view/EditorSurface/variables/EditorSurface.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/view/EditorSurface/variables/EditorSurface.md new file mode 100644 index 00000000..fd08eab0 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/view/EditorSurface/variables/EditorSurface.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/view/EditorSurface](../README.md) / EditorSurface + +# Variable: EditorSurface + +> `const` **EditorSurface**: `React.FC`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/view/EditorSurface.tsx:21](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/view/EditorSurface.tsx#L21) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/view/SendBlockBanner/README.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/view/SendBlockBanner/README.md new file mode 100644 index 00000000..62774dbf --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/view/SendBlockBanner/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/AgentChat/ChatInput/view/SendBlockBanner + +# app/pages/AgentChat/ChatInput/view/SendBlockBanner + +## Variables + +- [SendBlockBanner](variables/SendBlockBanner.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/ChatInput/view/SendBlockBanner/variables/SendBlockBanner.md b/frontend/.typedoc/app/pages/AgentChat/ChatInput/view/SendBlockBanner/variables/SendBlockBanner.md new file mode 100644 index 00000000..ebb79618 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/ChatInput/view/SendBlockBanner/variables/SendBlockBanner.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/AgentChat/ChatInput/view/SendBlockBanner](../README.md) / SendBlockBanner + +# Variable: SendBlockBanner + +> `const` **SendBlockBanner**: `React.FC`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/ChatInput/view/SendBlockBanner.tsx:13](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/ChatInput/view/SendBlockBanner.tsx#L13) + +Only hard-blocks render here. History compaction is shown as normal chat activity. diff --git a/frontend/.typedoc/app/pages/AgentChat/bubbles/CompactionMarker/README.md b/frontend/.typedoc/app/pages/AgentChat/bubbles/CompactionMarker/README.md new file mode 100644 index 00000000..e1c40d67 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/bubbles/CompactionMarker/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/bubbles/CompactionMarker + +# app/pages/AgentChat/bubbles/CompactionMarker + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/bubbles/CompactionMarker/variables/default.md b/frontend/.typedoc/app/pages/AgentChat/bubbles/CompactionMarker/variables/default.md new file mode 100644 index 00000000..6e61cbbb --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/bubbles/CompactionMarker/variables/default.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/bubbles/CompactionMarker](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<\{ `collapsedCount`: `number`; \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/bubbles/CompactionMarker.tsx:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/bubbles/CompactionMarker.tsx#L8) + +Chip marking where auto-compaction collapsed older turns, so the transcript doesn't just appear to skip. diff --git a/frontend/.typedoc/app/pages/AgentChat/bubbles/MessageBubble/README.md b/frontend/.typedoc/app/pages/AgentChat/bubbles/MessageBubble/README.md new file mode 100644 index 00000000..e2d4895e --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/bubbles/MessageBubble/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/bubbles/MessageBubble + +# app/pages/AgentChat/bubbles/MessageBubble + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/bubbles/MessageBubble/variables/default.md b/frontend/.typedoc/app/pages/AgentChat/bubbles/MessageBubble/variables/default.md new file mode 100644 index 00000000..4f5125c3 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/bubbles/MessageBubble/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/bubbles/MessageBubble](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/bubbles/MessageBubble.tsx:871](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/bubbles/MessageBubble.tsx#L871) diff --git a/frontend/.typedoc/app/pages/AgentChat/bubbles/StreamingBubble/README.md b/frontend/.typedoc/app/pages/AgentChat/bubbles/StreamingBubble/README.md new file mode 100644 index 00000000..ba4eb715 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/bubbles/StreamingBubble/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/bubbles/StreamingBubble + +# app/pages/AgentChat/bubbles/StreamingBubble + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/bubbles/StreamingBubble/variables/default.md b/frontend/.typedoc/app/pages/AgentChat/bubbles/StreamingBubble/variables/default.md new file mode 100644 index 00000000..f4ecfbc2 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/bubbles/StreamingBubble/variables/default.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/bubbles/StreamingBubble](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/bubbles/StreamingBubble.tsx:15](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/bubbles/StreamingBubble.tsx#L15) + +Leaf subscriber for one session's streaming entry; isolates re-renders so AgentChat doesn't churn per character. diff --git a/frontend/.typedoc/app/pages/AgentChat/bubbles/WindowedMarkdown/README.md b/frontend/.typedoc/app/pages/AgentChat/bubbles/WindowedMarkdown/README.md new file mode 100644 index 00000000..d90871c2 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/bubbles/WindowedMarkdown/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/bubbles/WindowedMarkdown + +# app/pages/AgentChat/bubbles/WindowedMarkdown + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/bubbles/WindowedMarkdown/variables/default.md b/frontend/.typedoc/app/pages/AgentChat/bubbles/WindowedMarkdown/variables/default.md new file mode 100644 index 00000000..779aeb8b --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/bubbles/WindowedMarkdown/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/bubbles/WindowedMarkdown](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<\{ `messageId`: `string`; `scrollRoot`: `Element` \| `null`; `text`: `string`; `viewportHeight`: `number`; `viewportWidth`: `number`; \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/bubbles/WindowedMarkdown.tsx:116](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/bubbles/WindowedMarkdown.tsx#L116) diff --git a/frontend/.typedoc/app/pages/AgentChat/bubbles/markdownMeasure/README.md b/frontend/.typedoc/app/pages/AgentChat/bubbles/markdownMeasure/README.md new file mode 100644 index 00000000..ddf00afe --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/bubbles/markdownMeasure/README.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/bubbles/markdownMeasure + +# app/pages/AgentChat/bubbles/markdownMeasure + +## Variables + +- [BUBBLE\_AVG\_CHAR\_WIDTH\_PX](variables/BUBBLE_AVG_CHAR_WIDTH_PX.md) +- [BUBBLE\_LINE\_HEIGHT\_PX](variables/BUBBLE_LINE_HEIGHT_PX.md) +- [BUBBLE\_WIDTH\_RATIO](variables/BUBBLE_WIDTH_RATIO.md) +- [MIN\_CHARS\_PER\_VIEWPORT](variables/MIN_CHARS_PER_VIEWPORT.md) +- [OVERSIZED\_VIEWPORT\_MULTIPLE](variables/OVERSIZED_VIEWPORT_MULTIPLE.md) +- [RECHECK\_VISIBILITY\_EVENT](variables/RECHECK_VISIBILITY_EVENT.md) + +## Functions + +- [estimateRenderedTextHeight](functions/estimateRenderedTextHeight.md) +- [oversizedCharThreshold](functions/oversizedCharThreshold.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/bubbles/markdownMeasure/functions/estimateRenderedTextHeight.md b/frontend/.typedoc/app/pages/AgentChat/bubbles/markdownMeasure/functions/estimateRenderedTextHeight.md new file mode 100644 index 00000000..2723e528 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/bubbles/markdownMeasure/functions/estimateRenderedTextHeight.md @@ -0,0 +1,29 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/bubbles/markdownMeasure](../README.md) / estimateRenderedTextHeight + +# Function: estimateRenderedTextHeight() + +> **estimateRenderedTextHeight**(`text`, `viewportWidth`, `chromePx?`): `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/bubbles/markdownMeasure.ts:38](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/bubbles/markdownMeasure.ts#L38) + +## Parameters + +### text + +`string` + +### viewportWidth + +`number` + +### chromePx? + +`number` = `40` + +## Returns + +`number` diff --git a/frontend/.typedoc/app/pages/AgentChat/bubbles/markdownMeasure/functions/oversizedCharThreshold.md b/frontend/.typedoc/app/pages/AgentChat/bubbles/markdownMeasure/functions/oversizedCharThreshold.md new file mode 100644 index 00000000..22f9dbd7 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/bubbles/markdownMeasure/functions/oversizedCharThreshold.md @@ -0,0 +1,25 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/bubbles/markdownMeasure](../README.md) / oversizedCharThreshold + +# Function: oversizedCharThreshold() + +> **oversizedCharThreshold**(`viewportHeight`, `viewportWidth`): `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/bubbles/markdownMeasure.ts:51](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/bubbles/markdownMeasure.ts#L51) + +## Parameters + +### viewportHeight + +`number` + +### viewportWidth + +`number` + +## Returns + +`number` diff --git a/frontend/.typedoc/app/pages/AgentChat/bubbles/markdownMeasure/variables/BUBBLE_AVG_CHAR_WIDTH_PX.md b/frontend/.typedoc/app/pages/AgentChat/bubbles/markdownMeasure/variables/BUBBLE_AVG_CHAR_WIDTH_PX.md new file mode 100644 index 00000000..26218d9c --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/bubbles/markdownMeasure/variables/BUBBLE_AVG_CHAR_WIDTH_PX.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/bubbles/markdownMeasure](../README.md) / BUBBLE\_AVG\_CHAR\_WIDTH\_PX + +# Variable: BUBBLE\_AVG\_CHAR\_WIDTH\_PX + +> `const` **BUBBLE\_AVG\_CHAR\_WIDTH\_PX**: `7.2` = `7.2` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/bubbles/markdownMeasure.ts:15](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/bubbles/markdownMeasure.ts#L15) diff --git a/frontend/.typedoc/app/pages/AgentChat/bubbles/markdownMeasure/variables/BUBBLE_LINE_HEIGHT_PX.md b/frontend/.typedoc/app/pages/AgentChat/bubbles/markdownMeasure/variables/BUBBLE_LINE_HEIGHT_PX.md new file mode 100644 index 00000000..00c2560f --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/bubbles/markdownMeasure/variables/BUBBLE_LINE_HEIGHT_PX.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/bubbles/markdownMeasure](../README.md) / BUBBLE\_LINE\_HEIGHT\_PX + +# Variable: BUBBLE\_LINE\_HEIGHT\_PX + +> `const` **BUBBLE\_LINE\_HEIGHT\_PX**: `22` = `22` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/bubbles/markdownMeasure.ts:14](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/bubbles/markdownMeasure.ts#L14) diff --git a/frontend/.typedoc/app/pages/AgentChat/bubbles/markdownMeasure/variables/BUBBLE_WIDTH_RATIO.md b/frontend/.typedoc/app/pages/AgentChat/bubbles/markdownMeasure/variables/BUBBLE_WIDTH_RATIO.md new file mode 100644 index 00000000..ef3ce4d7 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/bubbles/markdownMeasure/variables/BUBBLE_WIDTH_RATIO.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/bubbles/markdownMeasure](../README.md) / BUBBLE\_WIDTH\_RATIO + +# Variable: BUBBLE\_WIDTH\_RATIO + +> `const` **BUBBLE\_WIDTH\_RATIO**: `0.85` = `0.85` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/bubbles/markdownMeasure.ts:16](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/bubbles/markdownMeasure.ts#L16) diff --git a/frontend/.typedoc/app/pages/AgentChat/bubbles/markdownMeasure/variables/MIN_CHARS_PER_VIEWPORT.md b/frontend/.typedoc/app/pages/AgentChat/bubbles/markdownMeasure/variables/MIN_CHARS_PER_VIEWPORT.md new file mode 100644 index 00000000..28293327 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/bubbles/markdownMeasure/variables/MIN_CHARS_PER_VIEWPORT.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/bubbles/markdownMeasure](../README.md) / MIN\_CHARS\_PER\_VIEWPORT + +# Variable: MIN\_CHARS\_PER\_VIEWPORT + +> `const` **MIN\_CHARS\_PER\_VIEWPORT**: `2000` = `2_000` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/bubbles/markdownMeasure.ts:17](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/bubbles/markdownMeasure.ts#L17) diff --git a/frontend/.typedoc/app/pages/AgentChat/bubbles/markdownMeasure/variables/OVERSIZED_VIEWPORT_MULTIPLE.md b/frontend/.typedoc/app/pages/AgentChat/bubbles/markdownMeasure/variables/OVERSIZED_VIEWPORT_MULTIPLE.md new file mode 100644 index 00000000..47c4d0c9 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/bubbles/markdownMeasure/variables/OVERSIZED_VIEWPORT_MULTIPLE.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/bubbles/markdownMeasure](../README.md) / OVERSIZED\_VIEWPORT\_MULTIPLE + +# Variable: OVERSIZED\_VIEWPORT\_MULTIPLE + +> `const` **OVERSIZED\_VIEWPORT\_MULTIPLE**: `2` = `2` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/bubbles/markdownMeasure.ts:18](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/bubbles/markdownMeasure.ts#L18) diff --git a/frontend/.typedoc/app/pages/AgentChat/bubbles/markdownMeasure/variables/RECHECK_VISIBILITY_EVENT.md b/frontend/.typedoc/app/pages/AgentChat/bubbles/markdownMeasure/variables/RECHECK_VISIBILITY_EVENT.md new file mode 100644 index 00000000..8b98e8d5 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/bubbles/markdownMeasure/variables/RECHECK_VISIBILITY_EVENT.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/bubbles/markdownMeasure](../README.md) / RECHECK\_VISIBILITY\_EVENT + +# Variable: RECHECK\_VISIBILITY\_EVENT + +> `const` **RECHECK\_VISIBILITY\_EVENT**: `"chat-recheck-visibility"` = `'chat-recheck-visibility'` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/bubbles/markdownMeasure.ts:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/bubbles/markdownMeasure.ts#L12) diff --git a/frontend/.typedoc/app/pages/AgentChat/bubbles/useSmoothText/README.md b/frontend/.typedoc/app/pages/AgentChat/bubbles/useSmoothText/README.md new file mode 100644 index 00000000..256fdd64 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/bubbles/useSmoothText/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/bubbles/useSmoothText + +# app/pages/AgentChat/bubbles/useSmoothText + +## Functions + +- [useSmoothText](functions/useSmoothText.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/bubbles/useSmoothText/functions/useSmoothText.md b/frontend/.typedoc/app/pages/AgentChat/bubbles/useSmoothText/functions/useSmoothText.md new file mode 100644 index 00000000..8e1e9826 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/bubbles/useSmoothText/functions/useSmoothText.md @@ -0,0 +1,33 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/bubbles/useSmoothText](../README.md) / useSmoothText + +# Function: useSmoothText() + +> **useSmoothText**(`target`, `enabled`): `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/bubbles/useSmoothText.ts:33](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/bubbles/useSmoothText.ts#L33) + +## Parameters + +### target + +`string` + +### enabled + +`boolean` + +## Returns + +`object` + +### revealRef + +> **revealRef**: `RefObject`\<`HTMLElement` \| `null`\> + +### text + +> **text**: `string` diff --git a/frontend/.typedoc/app/pages/AgentChat/mcp-cards/CalendarCard/README.md b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/CalendarCard/README.md new file mode 100644 index 00000000..e4b3a64e --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/CalendarCard/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/mcp-cards/CalendarCard + +# app/pages/AgentChat/mcp-cards/CalendarCard + +## Variables + +- [CalendarCard](variables/CalendarCard.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/mcp-cards/CalendarCard/variables/CalendarCard.md b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/CalendarCard/variables/CalendarCard.md new file mode 100644 index 00000000..02c97103 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/CalendarCard/variables/CalendarCard.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/mcp-cards/CalendarCard](../README.md) / CalendarCard + +# Variable: CalendarCard + +> `const` **CalendarCard**: `React.FC`\<\{ `data`: `Record`\<`string`, `any`\>; `hideHeader?`: `boolean`; \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/mcp-cards/CalendarCard.tsx:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/mcp-cards/CalendarCard.tsx#L8) diff --git a/frontend/.typedoc/app/pages/AgentChat/mcp-cards/DriveCard/README.md b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/DriveCard/README.md new file mode 100644 index 00000000..6c4f80d1 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/DriveCard/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/mcp-cards/DriveCard + +# app/pages/AgentChat/mcp-cards/DriveCard + +## Variables + +- [DriveCard](variables/DriveCard.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/mcp-cards/DriveCard/variables/DriveCard.md b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/DriveCard/variables/DriveCard.md new file mode 100644 index 00000000..b5a6ae1a --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/DriveCard/variables/DriveCard.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/mcp-cards/DriveCard](../README.md) / DriveCard + +# Variable: DriveCard + +> `const` **DriveCard**: `React.FC`\<\{ `data`: `Record`\<`string`, `any`\>; \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/mcp-cards/DriveCard.tsx:7](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/mcp-cards/DriveCard.tsx#L7) diff --git a/frontend/.typedoc/app/pages/AgentChat/mcp-cards/GenericMcpCard/README.md b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/GenericMcpCard/README.md new file mode 100644 index 00000000..c7e1e773 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/GenericMcpCard/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/mcp-cards/GenericMcpCard + +# app/pages/AgentChat/mcp-cards/GenericMcpCard + +## Variables + +- [GenericMcpCard](variables/GenericMcpCard.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/mcp-cards/GenericMcpCard/variables/GenericMcpCard.md b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/GenericMcpCard/variables/GenericMcpCard.md new file mode 100644 index 00000000..b47eceb4 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/GenericMcpCard/variables/GenericMcpCard.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/mcp-cards/GenericMcpCard](../README.md) / GenericMcpCard + +# Variable: GenericMcpCard + +> `const` **GenericMcpCard**: `React.FC`\<\{ `data`: `Record`\<`string`, `any`\>; \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/mcp-cards/GenericMcpCard.tsx:6](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/mcp-cards/GenericMcpCard.tsx#L6) diff --git a/frontend/.typedoc/app/pages/AgentChat/mcp-cards/GmailCard/README.md b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/GmailCard/README.md new file mode 100644 index 00000000..55c87a71 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/GmailCard/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/mcp-cards/GmailCard + +# app/pages/AgentChat/mcp-cards/GmailCard + +## Variables + +- [GmailCard](variables/GmailCard.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/mcp-cards/GmailCard/variables/GmailCard.md b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/GmailCard/variables/GmailCard.md new file mode 100644 index 00000000..aa7576f3 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/GmailCard/variables/GmailCard.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/mcp-cards/GmailCard](../README.md) / GmailCard + +# Variable: GmailCard + +> `const` **GmailCard**: `React.FC`\<\{ `action`: `string`; `data`: `Record`\<`string`, `any`\>; `hideSubjectHeader?`: `boolean`; \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/mcp-cards/GmailCard.tsx:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/mcp-cards/GmailCard.tsx#L12) diff --git a/frontend/.typedoc/app/pages/AgentChat/mcp-cards/GoogleServiceIcon/README.md b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/GoogleServiceIcon/README.md new file mode 100644 index 00000000..728e3c9a --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/GoogleServiceIcon/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/mcp-cards/GoogleServiceIcon + +# app/pages/AgentChat/mcp-cards/GoogleServiceIcon + +## Variables + +- [GoogleServiceIcon](variables/GoogleServiceIcon.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/mcp-cards/GoogleServiceIcon/variables/GoogleServiceIcon.md b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/GoogleServiceIcon/variables/GoogleServiceIcon.md new file mode 100644 index 00000000..d69ca9e2 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/GoogleServiceIcon/variables/GoogleServiceIcon.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/mcp-cards/GoogleServiceIcon](../README.md) / GoogleServiceIcon + +# Variable: GoogleServiceIcon + +> `const` **GoogleServiceIcon**: `React.FC`\<\{ `service`: `string`; `size?`: `number`; \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/mcp-cards/GoogleServiceIcon.tsx:3](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/mcp-cards/GoogleServiceIcon.tsx#L3) diff --git a/frontend/.typedoc/app/pages/AgentChat/mcp-cards/McpResultCard/README.md b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/McpResultCard/README.md new file mode 100644 index 00000000..1b687ee8 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/McpResultCard/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/mcp-cards/McpResultCard + +# app/pages/AgentChat/mcp-cards/McpResultCard + +## Variables + +- [McpResultCard](variables/McpResultCard.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/mcp-cards/McpResultCard/variables/McpResultCard.md b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/McpResultCard/variables/McpResultCard.md new file mode 100644 index 00000000..cda13693 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/McpResultCard/variables/McpResultCard.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/mcp-cards/McpResultCard](../README.md) / McpResultCard + +# Variable: McpResultCard + +> `const` **McpResultCard**: `React.FC`\<\{ `compact?`: `boolean`; `parsed`: [`ParsedMcpResult`](../../../parsing/toolResultParsing/interfaces/ParsedMcpResult.md); \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/mcp-cards/McpResultCard.tsx:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/mcp-cards/McpResultCard.tsx#L12) diff --git a/frontend/.typedoc/app/pages/AgentChat/mcp-cards/cardColors/README.md b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/cardColors/README.md new file mode 100644 index 00000000..8423fc0f --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/cardColors/README.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/mcp-cards/cardColors + +# app/pages/AgentChat/mcp-cards/cardColors + +## Interfaces + +- [CardColors](interfaces/CardColors.md) + +## Functions + +- [useCardColors](functions/useCardColors.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/mcp-cards/cardColors/functions/useCardColors.md b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/cardColors/functions/useCardColors.md new file mode 100644 index 00000000..b03800a3 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/cardColors/functions/useCardColors.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/mcp-cards/cardColors](../README.md) / useCardColors + +# Function: useCardColors() + +> **useCardColors**(): [`CardColors`](../interfaces/CardColors.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/mcp-cards/cardColors.ts:42](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/mcp-cards/cardColors.ts#L42) + +## Returns + +[`CardColors`](../interfaces/CardColors.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/mcp-cards/cardColors/interfaces/CardColors.md b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/cardColors/interfaces/CardColors.md new file mode 100644 index 00000000..a32ffeaf --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/cardColors/interfaces/CardColors.md @@ -0,0 +1,89 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/mcp-cards/cardColors](../README.md) / CardColors + +# Interface: CardColors + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/mcp-cards/cardColors.ts:3](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/mcp-cards/cardColors.ts#L3) + +## Properties + +### TC\_ACCENT + +> **TC\_ACCENT**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/mcp-cards/cardColors.ts:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/mcp-cards/cardColors.ts#L11) + +*** + +### TC\_BG + +> **TC\_BG**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/mcp-cards/cardColors.ts:4](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/mcp-cards/cardColors.ts#L4) + +*** + +### TC\_BODY + +> **TC\_BODY**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/mcp-cards/cardColors.ts:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/mcp-cards/cardColors.ts#L8) + +*** + +### TC\_BORDER + +> **TC\_BORDER**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/mcp-cards/cardColors.ts:5](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/mcp-cards/cardColors.ts#L5) + +*** + +### TC\_DIM + +> **TC\_DIM**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/mcp-cards/cardColors.ts:10](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/mcp-cards/cardColors.ts#L10) + +*** + +### TC\_HEADING + +> **TC\_HEADING**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/mcp-cards/cardColors.ts:7](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/mcp-cards/cardColors.ts#L7) + +*** + +### TC\_HOVER + +> **TC\_HOVER**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/mcp-cards/cardColors.ts:6](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/mcp-cards/cardColors.ts#L6) + +*** + +### TC\_MUTED + +> **TC\_MUTED**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/mcp-cards/cardColors.ts:9](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/mcp-cards/cardColors.ts#L9) + +*** + +### TC\_SUCCESS + +> **TC\_SUCCESS**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/mcp-cards/cardColors.ts:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/mcp-cards/cardColors.ts#L12) + +*** + +### TC\_WARNING + +> **TC\_WARNING**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/mcp-cards/cardColors.ts:13](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/mcp-cards/cardColors.ts#L13) diff --git a/frontend/.typedoc/app/pages/AgentChat/mcp-cards/mcpCardHelpers/README.md b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/mcpCardHelpers/README.md new file mode 100644 index 00000000..9a226bd5 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/mcpCardHelpers/README.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/mcp-cards/mcpCardHelpers + +# app/pages/AgentChat/mcp-cards/mcpCardHelpers + +## Functions + +- [extractEmailFields](functions/extractEmailFields.md) +- [formatTimestamp](functions/formatTimestamp.md) +- [stripHtml](functions/stripHtml.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/mcp-cards/mcpCardHelpers/functions/extractEmailFields.md b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/mcpCardHelpers/functions/extractEmailFields.md new file mode 100644 index 00000000..55645d35 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/mcpCardHelpers/functions/extractEmailFields.md @@ -0,0 +1,45 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/mcp-cards/mcpCardHelpers](../README.md) / extractEmailFields + +# Function: extractEmailFields() + +> **extractEmailFields**(`msg`): `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/mcp-cards/mcpCardHelpers.ts:21](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/mcp-cards/mcpCardHelpers.ts#L21) + +## Parameters + +### msg + +`any` + +## Returns + +`object` + +### bodyPreview + +> **bodyPreview**: `any` + +### date + +> **date**: `string` + +### from + +> **from**: `any` + +### snippet + +> **snippet**: `any` + +### subject + +> **subject**: `any` + +### to + +> **to**: `any` diff --git a/frontend/.typedoc/app/pages/AgentChat/mcp-cards/mcpCardHelpers/functions/formatTimestamp.md b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/mcpCardHelpers/functions/formatTimestamp.md new file mode 100644 index 00000000..23882c6e --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/mcpCardHelpers/functions/formatTimestamp.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/mcp-cards/mcpCardHelpers](../README.md) / formatTimestamp + +# Function: formatTimestamp() + +> **formatTimestamp**(`ts`): `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/mcp-cards/mcpCardHelpers.ts:3](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/mcp-cards/mcpCardHelpers.ts#L3) + +## Parameters + +### ts + +`string` \| `number` \| `undefined` + +## Returns + +`string` diff --git a/frontend/.typedoc/app/pages/AgentChat/mcp-cards/mcpCardHelpers/functions/stripHtml.md b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/mcpCardHelpers/functions/stripHtml.md new file mode 100644 index 00000000..97d7ed9d --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/mcp-cards/mcpCardHelpers/functions/stripHtml.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/mcp-cards/mcpCardHelpers](../README.md) / stripHtml + +# Function: stripHtml() + +> **stripHtml**(`html`): `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/mcp-cards/mcpCardHelpers.ts:15](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/mcp-cards/mcpCardHelpers.ts#L15) + +## Parameters + +### html + +`string` + +## Returns + +`string` diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/agentToolParsing/README.md b/frontend/.typedoc/app/pages/AgentChat/parsing/agentToolParsing/README.md new file mode 100644 index 00000000..e4a63234 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/agentToolParsing/README.md @@ -0,0 +1,20 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/parsing/agentToolParsing + +# app/pages/AgentChat/parsing/agentToolParsing + +## Interfaces + +- [InvokeAgentParsed](interfaces/InvokeAgentParsed.md) + +## Functions + +- [isBrowserAgentTool](functions/isBrowserAgentTool.md) +- [isCreateAgentTool](functions/isCreateAgentTool.md) +- [isInvokeAgentTool](functions/isInvokeAgentTool.md) +- [parseCreateAgentResult](functions/parseCreateAgentResult.md) +- [parseInvokeAgentResult](functions/parseInvokeAgentResult.md) +- [parseInvokedSessionId](functions/parseInvokedSessionId.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/agentToolParsing/functions/isBrowserAgentTool.md b/frontend/.typedoc/app/pages/AgentChat/parsing/agentToolParsing/functions/isBrowserAgentTool.md new file mode 100644 index 00000000..b0627cfc --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/agentToolParsing/functions/isBrowserAgentTool.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/parsing/agentToolParsing](../README.md) / isBrowserAgentTool + +# Function: isBrowserAgentTool() + +> **isBrowserAgentTool**(`name`): `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/agentToolParsing.ts:3](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/agentToolParsing.ts#L3) + +## Parameters + +### name + +`string` + +## Returns + +`boolean` diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/agentToolParsing/functions/isCreateAgentTool.md b/frontend/.typedoc/app/pages/AgentChat/parsing/agentToolParsing/functions/isCreateAgentTool.md new file mode 100644 index 00000000..7776530e --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/agentToolParsing/functions/isCreateAgentTool.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/parsing/agentToolParsing](../README.md) / isCreateAgentTool + +# Function: isCreateAgentTool() + +> **isCreateAgentTool**(`name`): `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/agentToolParsing.ts:15](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/agentToolParsing.ts#L15) + +## Parameters + +### name + +`string` + +## Returns + +`boolean` diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/agentToolParsing/functions/isInvokeAgentTool.md b/frontend/.typedoc/app/pages/AgentChat/parsing/agentToolParsing/functions/isInvokeAgentTool.md new file mode 100644 index 00000000..66b08842 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/agentToolParsing/functions/isInvokeAgentTool.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/parsing/agentToolParsing](../README.md) / isInvokeAgentTool + +# Function: isInvokeAgentTool() + +> **isInvokeAgentTool**(`name`): `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/agentToolParsing.ts:9](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/agentToolParsing.ts#L9) + +## Parameters + +### name + +`string` + +## Returns + +`boolean` diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/agentToolParsing/functions/parseCreateAgentResult.md b/frontend/.typedoc/app/pages/AgentChat/parsing/agentToolParsing/functions/parseCreateAgentResult.md new file mode 100644 index 00000000..cef5b5d1 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/agentToolParsing/functions/parseCreateAgentResult.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/parsing/agentToolParsing](../README.md) / parseCreateAgentResult + +# Function: parseCreateAgentResult() + +> **parseCreateAgentResult**(`rawText`): `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/agentToolParsing.ts:31](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/agentToolParsing.ts#L31) + +## Parameters + +### rawText + +`string` + +## Returns + +`string` diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/agentToolParsing/functions/parseInvokeAgentResult.md b/frontend/.typedoc/app/pages/AgentChat/parsing/agentToolParsing/functions/parseInvokeAgentResult.md new file mode 100644 index 00000000..b61215fa --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/agentToolParsing/functions/parseInvokeAgentResult.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/parsing/agentToolParsing](../README.md) / parseInvokeAgentResult + +# Function: parseInvokeAgentResult() + +> **parseInvokeAgentResult**(`rawText`): [`InvokeAgentParsed`](../interfaces/InvokeAgentParsed.md) \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/agentToolParsing.ts:45](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/agentToolParsing.ts#L45) + +## Parameters + +### rawText + +`string` + +## Returns + +[`InvokeAgentParsed`](../interfaces/InvokeAgentParsed.md) \| `null` diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/agentToolParsing/functions/parseInvokedSessionId.md b/frontend/.typedoc/app/pages/AgentChat/parsing/agentToolParsing/functions/parseInvokedSessionId.md new file mode 100644 index 00000000..174f6542 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/agentToolParsing/functions/parseInvokedSessionId.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/parsing/agentToolParsing](../README.md) / parseInvokedSessionId + +# Function: parseInvokedSessionId() + +> **parseInvokedSessionId**(`rawText`): `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/agentToolParsing.ts:19](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/agentToolParsing.ts#L19) + +## Parameters + +### rawText + +`string` + +## Returns + +`string` \| `null` diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/agentToolParsing/interfaces/InvokeAgentParsed.md b/frontend/.typedoc/app/pages/AgentChat/parsing/agentToolParsing/interfaces/InvokeAgentParsed.md new file mode 100644 index 00000000..4ad80ce5 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/agentToolParsing/interfaces/InvokeAgentParsed.md @@ -0,0 +1,41 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/parsing/agentToolParsing](../README.md) / InvokeAgentParsed + +# Interface: InvokeAgentParsed + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/agentToolParsing.ts:24](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/agentToolParsing.ts#L24) + +## Properties + +### agentName + +> **agentName**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/agentToolParsing.ts:25](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/agentToolParsing.ts#L25) + +*** + +### cost + +> **cost**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/agentToolParsing.ts:27](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/agentToolParsing.ts#L27) + +*** + +### response + +> **response**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/agentToolParsing.ts:28](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/agentToolParsing.ts#L28) + +*** + +### sessionId + +> **sessionId**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/agentToolParsing.ts:26](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/agentToolParsing.ts#L26) diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/toolBubbleChrome/README.md b/frontend/.typedoc/app/pages/AgentChat/parsing/toolBubbleChrome/README.md new file mode 100644 index 00000000..a29a9534 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/toolBubbleChrome/README.md @@ -0,0 +1,16 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/parsing/toolBubbleChrome + +# app/pages/AgentChat/parsing/toolBubbleChrome + +## Variables + +- [ElapsedTimer](variables/ElapsedTimer.md) + +## Functions + +- [ensureToolCallKeyframes](functions/ensureToolCallKeyframes.md) +- [formatElapsed](functions/formatElapsed.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/toolBubbleChrome/functions/ensureToolCallKeyframes.md b/frontend/.typedoc/app/pages/AgentChat/parsing/toolBubbleChrome/functions/ensureToolCallKeyframes.md new file mode 100644 index 00000000..a8a5ff0d --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/toolBubbleChrome/functions/ensureToolCallKeyframes.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/parsing/toolBubbleChrome](../README.md) / ensureToolCallKeyframes + +# Function: ensureToolCallKeyframes() + +> **ensureToolCallKeyframes**(): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolBubbleChrome.tsx:7](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolBubbleChrome.tsx#L7) + +## Returns + +`void` diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/toolBubbleChrome/functions/formatElapsed.md b/frontend/.typedoc/app/pages/AgentChat/parsing/toolBubbleChrome/functions/formatElapsed.md new file mode 100644 index 00000000..52596003 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/toolBubbleChrome/functions/formatElapsed.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/parsing/toolBubbleChrome](../README.md) / formatElapsed + +# Function: formatElapsed() + +> **formatElapsed**(`ms`): `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolBubbleChrome.tsx:71](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolBubbleChrome.tsx#L71) + +## Parameters + +### ms + +`number` + +## Returns + +`string` diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/toolBubbleChrome/variables/ElapsedTimer.md b/frontend/.typedoc/app/pages/AgentChat/parsing/toolBubbleChrome/variables/ElapsedTimer.md new file mode 100644 index 00000000..9625d9fa --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/toolBubbleChrome/variables/ElapsedTimer.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/parsing/toolBubbleChrome](../README.md) / ElapsedTimer + +# Variable: ElapsedTimer + +> `const` **ElapsedTimer**: `React.FC`\<\{ `startTime`: `string`; \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolBubbleChrome.tsx:29](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolBubbleChrome.tsx#L29) diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/toolColorize/README.md b/frontend/.typedoc/app/pages/AgentChat/parsing/toolColorize/README.md new file mode 100644 index 00000000..d99c1c3f --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/toolColorize/README.md @@ -0,0 +1,17 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/parsing/toolColorize + +# app/pages/AgentChat/parsing/toolColorize + +## Interfaces + +- [TermColors](interfaces/TermColors.md) + +## Functions + +- [colorizeInput](functions/colorizeInput.md) +- [colorizeOutput](functions/colorizeOutput.md) +- [useTermColors](functions/useTermColors.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/toolColorize/functions/colorizeInput.md b/frontend/.typedoc/app/pages/AgentChat/parsing/toolColorize/functions/colorizeInput.md new file mode 100644 index 00000000..9ab86181 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/toolColorize/functions/colorizeInput.md @@ -0,0 +1,29 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/parsing/toolColorize](../README.md) / colorizeInput + +# Function: colorizeInput() + +> **colorizeInput**(`toolName`, `text`, `tc`): `ReactNode` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx:62](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx#L62) + +## Parameters + +### toolName + +`string` + +### text + +`string` + +### tc + +[`TermColors`](../interfaces/TermColors.md) + +## Returns + +`ReactNode` diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/toolColorize/functions/colorizeOutput.md b/frontend/.typedoc/app/pages/AgentChat/parsing/toolColorize/functions/colorizeOutput.md new file mode 100644 index 00000000..e6af161b --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/toolColorize/functions/colorizeOutput.md @@ -0,0 +1,29 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/parsing/toolColorize](../README.md) / colorizeOutput + +# Function: colorizeOutput() + +> **colorizeOutput**(`toolName`, `text`, `tc`): `ReactNode` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx:158](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx#L158) + +## Parameters + +### toolName + +`string` + +### text + +`string` + +### tc + +[`TermColors`](../interfaces/TermColors.md) + +## Returns + +`ReactNode` diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/toolColorize/functions/useTermColors.md b/frontend/.typedoc/app/pages/AgentChat/parsing/toolColorize/functions/useTermColors.md new file mode 100644 index 00000000..6dde6a16 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/toolColorize/functions/useTermColors.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/parsing/toolColorize](../README.md) / useTermColors + +# Function: useTermColors() + +> **useTermColors**(): [`TermColors`](../interfaces/TermColors.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx:57](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx#L57) + +## Returns + +[`TermColors`](../interfaces/TermColors.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/toolColorize/interfaces/TermColors.md b/frontend/.typedoc/app/pages/AgentChat/parsing/toolColorize/interfaces/TermColors.md new file mode 100644 index 00000000..d7b0ef05 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/toolColorize/interfaces/TermColors.md @@ -0,0 +1,121 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/parsing/toolColorize](../README.md) / TermColors + +# Interface: TermColors + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx:6](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx#L6) + +## Properties + +### ADD\_COLOR + +> **ADD\_COLOR**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx:13](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx#L13) + +*** + +### CMD\_COLOR + +> **CMD\_COLOR**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx:10](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx#L10) + +*** + +### DEL\_COLOR + +> **DEL\_COLOR**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx:14](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx#L14) + +*** + +### DIFF\_HEADER\_COLOR + +> **DIFF\_HEADER\_COLOR**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx:19](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx#L19) + +*** + +### DIM\_COLOR + +> **DIM\_COLOR**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx:18](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx#L18) + +*** + +### NUM\_COLOR + +> **NUM\_COLOR**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx:17](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx#L17) + +*** + +### OUTPUT\_COLOR + +> **OUTPUT\_COLOR**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx#L11) + +*** + +### PATH\_COLOR + +> **PATH\_COLOR**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx#L12) + +*** + +### PROMPT\_COLOR + +> **PROMPT\_COLOR**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx:9](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx#L9) + +*** + +### SCROLLBAR\_THUMB + +> **SCROLLBAR\_THUMB**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx:20](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx#L20) + +*** + +### STDERR\_COLOR + +> **STDERR\_COLOR**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx:15](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx#L15) + +*** + +### TERM\_BG + +> **TERM\_BG**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx:7](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx#L7) + +*** + +### TERM\_BORDER + +> **TERM\_BORDER**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx#L8) + +*** + +### WARN\_COLOR + +> **WARN\_COLOR**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx:16](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolColorize.tsx#L16) diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/toolLabels/README.md b/frontend/.typedoc/app/pages/AgentChat/parsing/toolLabels/README.md new file mode 100644 index 00000000..d10d9d13 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/toolLabels/README.md @@ -0,0 +1,20 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/parsing/toolLabels + +# app/pages/AgentChat/parsing/toolLabels + +## Interfaces + +- [ToolLabel](interfaces/ToolLabel.md) + +## Functions + +- [bashCommandDetail](functions/bashCommandDetail.md) +- [getToolLabel](functions/getToolLabel.md) +- [getToolLabelWithInput](functions/getToolLabelWithInput.md) +- [prettyPath](functions/prettyPath.md) +- [prettyUrl](functions/prettyUrl.md) +- [quoteQuery](functions/quoteQuery.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/toolLabels/functions/bashCommandDetail.md b/frontend/.typedoc/app/pages/AgentChat/parsing/toolLabels/functions/bashCommandDetail.md new file mode 100644 index 00000000..aa33b1f3 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/toolLabels/functions/bashCommandDetail.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/parsing/toolLabels](../README.md) / bashCommandDetail + +# Function: bashCommandDetail() + +> **bashCommandDetail**(`rawCmd`): `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolLabels.ts:873](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolLabels.ts#L873) + +## Parameters + +### rawCmd + +`string` + +## Returns + +`string` diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/toolLabels/functions/getToolLabel.md b/frontend/.typedoc/app/pages/AgentChat/parsing/toolLabels/functions/getToolLabel.md new file mode 100644 index 00000000..5b3b8d93 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/toolLabels/functions/getToolLabel.md @@ -0,0 +1,25 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/parsing/toolLabels](../README.md) / getToolLabel + +# Function: getToolLabel() + +> **getToolLabel**(`toolName`, `seed?`): [`ToolLabel`](../interfaces/ToolLabel.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolLabels.ts:445](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolLabels.ts#L445) + +## Parameters + +### toolName + +`string` + +### seed? + +`string` + +## Returns + +[`ToolLabel`](../interfaces/ToolLabel.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/toolLabels/functions/getToolLabelWithInput.md b/frontend/.typedoc/app/pages/AgentChat/parsing/toolLabels/functions/getToolLabelWithInput.md new file mode 100644 index 00000000..2f22473b --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/toolLabels/functions/getToolLabelWithInput.md @@ -0,0 +1,31 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/parsing/toolLabels](../README.md) / getToolLabelWithInput + +# Function: getToolLabelWithInput() + +> **getToolLabelWithInput**(`toolName`, `input`, `seed?`): [`ToolLabel`](../interfaces/ToolLabel.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolLabels.ts:457](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolLabels.ts#L457) + +Per-input label override for tools whose meaning depends on input (MCPActivate, Bash). + +## Parameters + +### toolName + +`string` + +### input + +`any` + +### seed? + +`string` + +## Returns + +[`ToolLabel`](../interfaces/ToolLabel.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/toolLabels/functions/prettyPath.md b/frontend/.typedoc/app/pages/AgentChat/parsing/toolLabels/functions/prettyPath.md new file mode 100644 index 00000000..ad7272d7 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/toolLabels/functions/prettyPath.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/parsing/toolLabels](../README.md) / prettyPath + +# Function: prettyPath() + +> **prettyPath**(`p`): `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolLabels.ts:849](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolLabels.ts#L849) + +## Parameters + +### p + +`string` + +## Returns + +`string` diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/toolLabels/functions/prettyUrl.md b/frontend/.typedoc/app/pages/AgentChat/parsing/toolLabels/functions/prettyUrl.md new file mode 100644 index 00000000..50ecfdb8 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/toolLabels/functions/prettyUrl.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/parsing/toolLabels](../README.md) / prettyUrl + +# Function: prettyUrl() + +> **prettyUrl**(`u`): `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolLabels.ts:856](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolLabels.ts#L856) + +## Parameters + +### u + +`string` + +## Returns + +`string` diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/toolLabels/functions/quoteQuery.md b/frontend/.typedoc/app/pages/AgentChat/parsing/toolLabels/functions/quoteQuery.md new file mode 100644 index 00000000..a16b21d6 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/toolLabels/functions/quoteQuery.md @@ -0,0 +1,25 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/parsing/toolLabels](../README.md) / quoteQuery + +# Function: quoteQuery() + +> **quoteQuery**(`q`, `max?`): `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolLabels.ts:867](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolLabels.ts#L867) + +## Parameters + +### q + +`string` + +### max? + +`number` = `60` + +## Returns + +`string` diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/toolLabels/interfaces/ToolLabel.md b/frontend/.typedoc/app/pages/AgentChat/parsing/toolLabels/interfaces/ToolLabel.md new file mode 100644 index 00000000..aa7f5cc7 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/toolLabels/interfaces/ToolLabel.md @@ -0,0 +1,25 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/parsing/toolLabels](../README.md) / ToolLabel + +# Interface: ToolLabel + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolLabels.ts:1](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolLabels.ts#L1) + +## Properties + +### past + +> **past**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolLabels.ts:3](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolLabels.ts#L3) + +*** + +### present + +> **present**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolLabels.ts:2](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolLabels.ts#L2) diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/README.md b/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/README.md new file mode 100644 index 00000000..b03e2d31 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/README.md @@ -0,0 +1,27 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/parsing/toolResultParsing + +# app/pages/AgentChat/parsing/toolResultParsing + +## Interfaces + +- [ParsedBashResult](interfaces/ParsedBashResult.md) +- [ParsedMcpResult](interfaces/ParsedMcpResult.md) +- [ParsedTextResult](interfaces/ParsedTextResult.md) + +## Type Aliases + +- [ParsedResult](type-aliases/ParsedResult.md) + +## Functions + +- [formatInputDisplay](functions/formatInputDisplay.md) +- [getInputSummary](functions/getInputSummary.md) +- [getPromptPrefix](functions/getPromptPrefix.md) +- [getResultSummary](functions/getResultSummary.md) +- [getToolData](functions/getToolData.md) +- [isBashTool](functions/isBashTool.md) +- [parseToolResult](functions/parseToolResult.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/functions/formatInputDisplay.md b/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/functions/formatInputDisplay.md new file mode 100644 index 00000000..8ebf13b0 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/functions/formatInputDisplay.md @@ -0,0 +1,25 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/parsing/toolResultParsing](../README.md) / formatInputDisplay + +# Function: formatInputDisplay() + +> **formatInputDisplay**(`toolName`, `input`): `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts:61](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts#L61) + +## Parameters + +### toolName + +`string` + +### input + +`any` + +## Returns + +`string` diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/functions/getInputSummary.md b/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/functions/getInputSummary.md new file mode 100644 index 00000000..fa5ef6ec --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/functions/getInputSummary.md @@ -0,0 +1,25 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/parsing/toolResultParsing](../README.md) / getInputSummary + +# Function: getInputSummary() + +> **getInputSummary**(`toolName`, `input`): `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts:19](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts#L19) + +## Parameters + +### toolName + +`string` + +### input + +`any` + +## Returns + +`string` diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/functions/getPromptPrefix.md b/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/functions/getPromptPrefix.md new file mode 100644 index 00000000..76d3411f --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/functions/getPromptPrefix.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/parsing/toolResultParsing](../README.md) / getPromptPrefix + +# Function: getPromptPrefix() + +> **getPromptPrefix**(`toolName`): `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts:266](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts#L266) + +## Parameters + +### toolName + +`string` + +## Returns + +`string` diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/functions/getResultSummary.md b/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/functions/getResultSummary.md new file mode 100644 index 00000000..3973cf0d --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/functions/getResultSummary.md @@ -0,0 +1,25 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/parsing/toolResultParsing](../README.md) / getResultSummary + +# Function: getResultSummary() + +> **getResultSummary**(`toolName`, `rawText`): `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts:211](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts#L211) + +## Parameters + +### toolName + +`string` + +### rawText + +`string` + +## Returns + +`string` diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/functions/getToolData.md b/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/functions/getToolData.md new file mode 100644 index 00000000..ecad6255 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/functions/getToolData.md @@ -0,0 +1,37 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/parsing/toolResultParsing](../README.md) / getToolData + +# Function: getToolData() + +> **getToolData**(`call`): `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts:5](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts#L5) + +## Parameters + +### call + +[`AgentMessage`](../../../../../../shared/state/agentsSlice/interfaces/AgentMessage.md) + +## Returns + +`object` + +### input + +> **input**: `any` + +### isDenied + +> **isDenied**: `boolean` + +### toolId + +> **toolId**: `any` = `content.id` + +### toolName + +> **toolName**: `any` diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/functions/isBashTool.md b/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/functions/isBashTool.md new file mode 100644 index 00000000..77e2de83 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/functions/isBashTool.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/parsing/toolResultParsing](../README.md) / isBashTool + +# Function: isBashTool() + +> **isBashTool**(`name`): name is "Bash" \| "bash" + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts:15](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts#L15) + +## Parameters + +### name + +`string` + +## Returns + +name is "Bash" \| "bash" diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/functions/parseToolResult.md b/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/functions/parseToolResult.md new file mode 100644 index 00000000..91663e8f --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/functions/parseToolResult.md @@ -0,0 +1,25 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/parsing/toolResultParsing](../README.md) / parseToolResult + +# Function: parseToolResult() + +> **parseToolResult**(`toolName`, `rawText`): [`ParsedResult`](../type-aliases/ParsedResult.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts:146](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts#L146) + +## Parameters + +### toolName + +`string` + +### rawText + +`string` + +## Returns + +[`ParsedResult`](../type-aliases/ParsedResult.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/interfaces/ParsedBashResult.md b/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/interfaces/ParsedBashResult.md new file mode 100644 index 00000000..d3b50bfa --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/interfaces/ParsedBashResult.md @@ -0,0 +1,41 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/parsing/toolResultParsing](../README.md) / ParsedBashResult + +# Interface: ParsedBashResult + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts:123](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts#L123) + +## Properties + +### exitCode + +> **exitCode**: `number` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts:127](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts#L127) + +*** + +### stderr + +> **stderr**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts:126](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts#L126) + +*** + +### stdout + +> **stdout**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts:125](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts#L125) + +*** + +### type + +> **type**: `"bash"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts:124](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts#L124) diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/interfaces/ParsedMcpResult.md b/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/interfaces/ParsedMcpResult.md new file mode 100644 index 00000000..8fc829ec --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/interfaces/ParsedMcpResult.md @@ -0,0 +1,49 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/parsing/toolResultParsing](../README.md) / ParsedMcpResult + +# Interface: ParsedMcpResult + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts:136](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts#L136) + +## Properties + +### action + +> **action**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts:139](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts#L139) + +*** + +### data + +> **data**: `Record`\<`string`, `any`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts:140](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts#L140) + +*** + +### rawText + +> **rawText**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts:141](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts#L141) + +*** + +### service + +> **service**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts:138](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts#L138) + +*** + +### type + +> **type**: `"mcp"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts:137](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts#L137) diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/interfaces/ParsedTextResult.md b/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/interfaces/ParsedTextResult.md new file mode 100644 index 00000000..b7cb651d --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/interfaces/ParsedTextResult.md @@ -0,0 +1,33 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/parsing/toolResultParsing](../README.md) / ParsedTextResult + +# Interface: ParsedTextResult + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts:130](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts#L130) + +## Properties + +### content + +> **content**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts:132](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts#L132) + +*** + +### isError? + +> `optional` **isError?**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts:133](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts#L133) + +*** + +### type + +> **type**: `"text"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts:131](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts#L131) diff --git a/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/type-aliases/ParsedResult.md b/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/type-aliases/ParsedResult.md new file mode 100644 index 00000000..d6f413ac --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/parsing/toolResultParsing/type-aliases/ParsedResult.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/parsing/toolResultParsing](../README.md) / ParsedResult + +# Type Alias: ParsedResult + +> **ParsedResult** = [`ParsedBashResult`](../interfaces/ParsedBashResult.md) \| [`ParsedTextResult`](../interfaces/ParsedTextResult.md) \| [`ParsedMcpResult`](../interfaces/ParsedMcpResult.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts:144](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/parsing/toolResultParsing.ts#L144) diff --git a/frontend/.typedoc/app/pages/AgentChat/shell/ApprovalBar/README.md b/frontend/.typedoc/app/pages/AgentChat/shell/ApprovalBar/README.md new file mode 100644 index 00000000..5174c170 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/shell/ApprovalBar/README.md @@ -0,0 +1,24 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/shell/ApprovalBar + +# app/pages/AgentChat/shell/ApprovalBar + +## Interfaces + +- [ParsedTool](interfaces/ParsedTool.md) +- [QuestionFormProps](interfaces/QuestionFormProps.md) + +## Variables + +- [BatchApprovalBar](variables/BatchApprovalBar.md) +- [default](variables/default.md) +- [QuestionForm](variables/QuestionForm.md) + +## Functions + +- [getToolIcon](functions/getToolIcon.md) +- [parseMcpToolName](functions/parseMcpToolName.md) +- [useMcpToolMeta](functions/useMcpToolMeta.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/shell/ApprovalBar/functions/getToolIcon.md b/frontend/.typedoc/app/pages/AgentChat/shell/ApprovalBar/functions/getToolIcon.md new file mode 100644 index 00000000..a5bb03cd --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/shell/ApprovalBar/functions/getToolIcon.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/shell/ApprovalBar](../README.md) / getToolIcon + +# Function: getToolIcon() + +> **getToolIcon**(`toolName`): `Element` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/shell/ApprovalBar.tsx:170](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/shell/ApprovalBar.tsx#L170) + +## Parameters + +### toolName + +`string` + +## Returns + +`Element` diff --git a/frontend/.typedoc/app/pages/AgentChat/shell/ApprovalBar/functions/parseMcpToolName.md b/frontend/.typedoc/app/pages/AgentChat/shell/ApprovalBar/functions/parseMcpToolName.md new file mode 100644 index 00000000..2397ac1b --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/shell/ApprovalBar/functions/parseMcpToolName.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/shell/ApprovalBar](../README.md) / parseMcpToolName + +# Function: parseMcpToolName() + +> **parseMcpToolName**(`rawName`): [`ParsedTool`](../interfaces/ParsedTool.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/shell/ApprovalBar.tsx:63](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/shell/ApprovalBar.tsx#L63) + +## Parameters + +### rawName + +`string` + +## Returns + +[`ParsedTool`](../interfaces/ParsedTool.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/shell/ApprovalBar/functions/useMcpToolMeta.md b/frontend/.typedoc/app/pages/AgentChat/shell/ApprovalBar/functions/useMcpToolMeta.md new file mode 100644 index 00000000..fea9e2f1 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/shell/ApprovalBar/functions/useMcpToolMeta.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/shell/ApprovalBar](../README.md) / useMcpToolMeta + +# Function: useMcpToolMeta() + +> **useMcpToolMeta**(`parsed`): `McpToolMeta` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/shell/ApprovalBar.tsx:86](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/shell/ApprovalBar.tsx#L86) + +## Parameters + +### parsed + +[`ParsedTool`](../interfaces/ParsedTool.md) + +## Returns + +`McpToolMeta` diff --git a/frontend/.typedoc/app/pages/AgentChat/shell/ApprovalBar/interfaces/ParsedTool.md b/frontend/.typedoc/app/pages/AgentChat/shell/ApprovalBar/interfaces/ParsedTool.md new file mode 100644 index 00000000..83949d10 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/shell/ApprovalBar/interfaces/ParsedTool.md @@ -0,0 +1,41 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/shell/ApprovalBar](../README.md) / ParsedTool + +# Interface: ParsedTool + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/shell/ApprovalBar.tsx:56](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/shell/ApprovalBar.tsx#L56) + +## Properties + +### actionName + +> **actionName**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/shell/ApprovalBar.tsx:59](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/shell/ApprovalBar.tsx#L59) + +*** + +### displayName + +> **displayName**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/shell/ApprovalBar.tsx:60](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/shell/ApprovalBar.tsx#L60) + +*** + +### isMcp + +> **isMcp**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/shell/ApprovalBar.tsx:57](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/shell/ApprovalBar.tsx#L57) + +*** + +### serverSlug + +> **serverSlug**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/shell/ApprovalBar.tsx:58](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/shell/ApprovalBar.tsx#L58) diff --git a/frontend/.typedoc/app/pages/AgentChat/shell/ApprovalBar/interfaces/QuestionFormProps.md b/frontend/.typedoc/app/pages/AgentChat/shell/ApprovalBar/interfaces/QuestionFormProps.md new file mode 100644 index 00000000..dd20ccc3 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/shell/ApprovalBar/interfaces/QuestionFormProps.md @@ -0,0 +1,73 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/shell/ApprovalBar](../README.md) / QuestionFormProps + +# Interface: QuestionFormProps + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/shell/ApprovalBar.tsx:305](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/shell/ApprovalBar.tsx#L305) + +## Properties + +### compact? + +> `optional` **compact?**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/shell/ApprovalBar.tsx:309](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/shell/ApprovalBar.tsx#L309) + +*** + +### onApprove + +> **onApprove**: (`requestId`, `updatedInput?`, `trustPattern?`) => `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/shell/ApprovalBar.tsx:307](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/shell/ApprovalBar.tsx#L307) + +#### Parameters + +##### requestId + +`string` + +##### updatedInput? + +`Record`\<`string`, `any`\> + +##### trustPattern? + +`boolean` + +#### Returns + +`void` + +*** + +### onDeny + +> **onDeny**: (`requestId`, `message?`) => `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/shell/ApprovalBar.tsx:308](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/shell/ApprovalBar.tsx#L308) + +#### Parameters + +##### requestId + +`string` + +##### message? + +`string` + +#### Returns + +`void` + +*** + +### request + +> **request**: [`ApprovalRequest`](../../../../../../shared/state/agentsSlice/interfaces/ApprovalRequest.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/shell/ApprovalBar.tsx:306](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/shell/ApprovalBar.tsx#L306) diff --git a/frontend/.typedoc/app/pages/AgentChat/shell/ApprovalBar/variables/BatchApprovalBar.md b/frontend/.typedoc/app/pages/AgentChat/shell/ApprovalBar/variables/BatchApprovalBar.md new file mode 100644 index 00000000..63f810fa --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/shell/ApprovalBar/variables/BatchApprovalBar.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/shell/ApprovalBar](../README.md) / BatchApprovalBar + +# Variable: BatchApprovalBar + +> `const` **BatchApprovalBar**: `React.FC`\<`BatchApprovalBarProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/shell/ApprovalBar.tsx:918](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/shell/ApprovalBar.tsx#L918) diff --git a/frontend/.typedoc/app/pages/AgentChat/shell/ApprovalBar/variables/QuestionForm.md b/frontend/.typedoc/app/pages/AgentChat/shell/ApprovalBar/variables/QuestionForm.md new file mode 100644 index 00000000..dc095791 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/shell/ApprovalBar/variables/QuestionForm.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/shell/ApprovalBar](../README.md) / QuestionForm + +# Variable: QuestionForm + +> `const` **QuestionForm**: `React.FC`\<[`QuestionFormProps`](../interfaces/QuestionFormProps.md)\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/shell/ApprovalBar.tsx:314](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/shell/ApprovalBar.tsx#L314) diff --git a/frontend/.typedoc/app/pages/AgentChat/shell/ApprovalBar/variables/default.md b/frontend/.typedoc/app/pages/AgentChat/shell/ApprovalBar/variables/default.md new file mode 100644 index 00000000..5d83f418 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/shell/ApprovalBar/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/shell/ApprovalBar](../README.md) / default + +# Variable: default + +> **default**: `NamedExoticComponent`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/shell/ApprovalBar.tsx:1167](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/shell/ApprovalBar.tsx#L1167) diff --git a/frontend/.typedoc/app/pages/AgentChat/shell/BranchNavigator/README.md b/frontend/.typedoc/app/pages/AgentChat/shell/BranchNavigator/README.md new file mode 100644 index 00000000..fcb8f6fb --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/shell/BranchNavigator/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/shell/BranchNavigator + +# app/pages/AgentChat/shell/BranchNavigator + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/shell/BranchNavigator/variables/default.md b/frontend/.typedoc/app/pages/AgentChat/shell/BranchNavigator/variables/default.md new file mode 100644 index 00000000..26f7d0d5 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/shell/BranchNavigator/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/shell/BranchNavigator](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/shell/BranchNavigator.tsx:16](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/shell/BranchNavigator.tsx#L16) diff --git a/frontend/.typedoc/app/pages/AgentChat/shell/BrowserAgentInlineFeed/README.md b/frontend/.typedoc/app/pages/AgentChat/shell/BrowserAgentInlineFeed/README.md new file mode 100644 index 00000000..f8413a5c --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/shell/BrowserAgentInlineFeed/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/shell/BrowserAgentInlineFeed + +# app/pages/AgentChat/shell/BrowserAgentInlineFeed + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/shell/BrowserAgentInlineFeed/variables/default.md b/frontend/.typedoc/app/pages/AgentChat/shell/BrowserAgentInlineFeed/variables/default.md new file mode 100644 index 00000000..a75cce29 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/shell/BrowserAgentInlineFeed/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/shell/BrowserAgentInlineFeed](../README.md) / default + +# Variable: default + +> **default**: `NamedExoticComponent`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/shell/BrowserAgentInlineFeed.tsx:518](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/shell/BrowserAgentInlineFeed.tsx#L518) diff --git a/frontend/.typedoc/app/pages/AgentChat/shell/ContextDrawer/README.md b/frontend/.typedoc/app/pages/AgentChat/shell/ContextDrawer/README.md new file mode 100644 index 00000000..33bdcd77 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/shell/ContextDrawer/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/shell/ContextDrawer + +# app/pages/AgentChat/shell/ContextDrawer + +## Functions + +- [default](functions/default.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/shell/ContextDrawer/functions/default.md b/frontend/.typedoc/app/pages/AgentChat/shell/ContextDrawer/functions/default.md new file mode 100644 index 00000000..db22c03b --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/shell/ContextDrawer/functions/default.md @@ -0,0 +1,17 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/shell/ContextDrawer](../README.md) / default + +# Function: default() + +> **default**(): `Element` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/shell/ContextDrawer.tsx:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/shell/ContextDrawer.tsx#L11) + +/context drawer: shows session MCPs, ctx%, cache hits, compaction. Opened via window CustomEvent from ChatInput's slash handler. + +## Returns + +`Element` \| `null` diff --git a/frontend/.typedoc/app/pages/AgentChat/shell/FeedbackDialog/README.md b/frontend/.typedoc/app/pages/AgentChat/shell/FeedbackDialog/README.md new file mode 100644 index 00000000..90815af8 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/shell/FeedbackDialog/README.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/shell/FeedbackDialog + +# app/pages/AgentChat/shell/FeedbackDialog + +## Type Aliases + +- [Sentiment](type-aliases/Sentiment.md) + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/shell/FeedbackDialog/type-aliases/Sentiment.md b/frontend/.typedoc/app/pages/AgentChat/shell/FeedbackDialog/type-aliases/Sentiment.md new file mode 100644 index 00000000..be38ae73 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/shell/FeedbackDialog/type-aliases/Sentiment.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/shell/FeedbackDialog](../README.md) / Sentiment + +# Type Alias: Sentiment + +> **Sentiment** = `"up"` \| `"down"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/shell/FeedbackDialog.tsx:10](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/shell/FeedbackDialog.tsx#L10) diff --git a/frontend/.typedoc/app/pages/AgentChat/shell/FeedbackDialog/variables/default.md b/frontend/.typedoc/app/pages/AgentChat/shell/FeedbackDialog/variables/default.md new file mode 100644 index 00000000..5c0dcde1 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/shell/FeedbackDialog/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/shell/FeedbackDialog](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/shell/FeedbackDialog.tsx:21](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/shell/FeedbackDialog.tsx#L21) diff --git a/frontend/.typedoc/app/pages/AgentChat/shell/MessageActionBar/README.md b/frontend/.typedoc/app/pages/AgentChat/shell/MessageActionBar/README.md new file mode 100644 index 00000000..bdf2b758 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/shell/MessageActionBar/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/shell/MessageActionBar + +# app/pages/AgentChat/shell/MessageActionBar + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/shell/MessageActionBar/variables/default.md b/frontend/.typedoc/app/pages/AgentChat/shell/MessageActionBar/variables/default.md new file mode 100644 index 00000000..abfb90dc --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/shell/MessageActionBar/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/shell/MessageActionBar](../README.md) / default + +# Variable: default + +> **default**: `NamedExoticComponent`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/shell/MessageActionBar.tsx:195](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/shell/MessageActionBar.tsx#L195) diff --git a/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/AgentResponseBody/README.md b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/AgentResponseBody/README.md new file mode 100644 index 00000000..c3c1ac1a --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/AgentResponseBody/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/tool-bubbles/AgentResponseBody + +# app/pages/AgentChat/tool-bubbles/AgentResponseBody + +## Variables + +- [AgentResponseBody](variables/AgentResponseBody.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/AgentResponseBody/variables/AgentResponseBody.md b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/AgentResponseBody/variables/AgentResponseBody.md new file mode 100644 index 00000000..c988f047 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/AgentResponseBody/variables/AgentResponseBody.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/tool-bubbles/AgentResponseBody](../README.md) / AgentResponseBody + +# Variable: AgentResponseBody + +> `const` **AgentResponseBody**: `React.FC`\<\{ `markdown`: `string`; `open`: `boolean`; \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/tool-bubbles/AgentResponseBody.tsx:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/tool-bubbles/AgentResponseBody.tsx#L8) diff --git a/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/CompactMcpBubble/README.md b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/CompactMcpBubble/README.md new file mode 100644 index 00000000..3945e8de --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/CompactMcpBubble/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/tool-bubbles/CompactMcpBubble + +# app/pages/AgentChat/tool-bubbles/CompactMcpBubble + +## Variables + +- [CompactMcpBubble](variables/CompactMcpBubble.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/CompactMcpBubble/variables/CompactMcpBubble.md b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/CompactMcpBubble/variables/CompactMcpBubble.md new file mode 100644 index 00000000..fb023c1a --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/CompactMcpBubble/variables/CompactMcpBubble.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/tool-bubbles/CompactMcpBubble](../README.md) / CompactMcpBubble + +# Variable: CompactMcpBubble + +> `const` **CompactMcpBubble**: `React.FC`\<`CompactMcpBubbleProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/tool-bubbles/CompactMcpBubble.tsx:42](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/tool-bubbles/CompactMcpBubble.tsx#L42) diff --git a/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/CreateAgentBubble/README.md b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/CreateAgentBubble/README.md new file mode 100644 index 00000000..dc1baf6e --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/CreateAgentBubble/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/tool-bubbles/CreateAgentBubble + +# app/pages/AgentChat/tool-bubbles/CreateAgentBubble + +## Variables + +- [CreateAgentBubble](variables/CreateAgentBubble.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/CreateAgentBubble/variables/CreateAgentBubble.md b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/CreateAgentBubble/variables/CreateAgentBubble.md new file mode 100644 index 00000000..b266e63d --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/CreateAgentBubble/variables/CreateAgentBubble.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/tool-bubbles/CreateAgentBubble](../README.md) / CreateAgentBubble + +# Variable: CreateAgentBubble + +> `const` **CreateAgentBubble**: `React.FC`\<`CreateAgentBubbleProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/tool-bubbles/CreateAgentBubble.tsx:34](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/tool-bubbles/CreateAgentBubble.tsx#L34) diff --git a/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/DefaultToolBubble/README.md b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/DefaultToolBubble/README.md new file mode 100644 index 00000000..95f75503 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/DefaultToolBubble/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/tool-bubbles/DefaultToolBubble + +# app/pages/AgentChat/tool-bubbles/DefaultToolBubble + +## Variables + +- [DefaultToolBubble](variables/DefaultToolBubble.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/DefaultToolBubble/variables/DefaultToolBubble.md b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/DefaultToolBubble/variables/DefaultToolBubble.md new file mode 100644 index 00000000..36352606 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/DefaultToolBubble/variables/DefaultToolBubble.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/tool-bubbles/DefaultToolBubble](../README.md) / DefaultToolBubble + +# Variable: DefaultToolBubble + +> `const` **DefaultToolBubble**: `React.FC`\<`DefaultToolBubbleProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/tool-bubbles/DefaultToolBubble.tsx:51](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/tool-bubbles/DefaultToolBubble.tsx#L51) diff --git a/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/InvokeAgentBubble/README.md b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/InvokeAgentBubble/README.md new file mode 100644 index 00000000..3a1ef0ec --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/InvokeAgentBubble/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/tool-bubbles/InvokeAgentBubble + +# app/pages/AgentChat/tool-bubbles/InvokeAgentBubble + +## Variables + +- [InvokeAgentBubble](variables/InvokeAgentBubble.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/InvokeAgentBubble/variables/InvokeAgentBubble.md b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/InvokeAgentBubble/variables/InvokeAgentBubble.md new file mode 100644 index 00000000..2dcf9b24 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/InvokeAgentBubble/variables/InvokeAgentBubble.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/tool-bubbles/InvokeAgentBubble](../README.md) / InvokeAgentBubble + +# Variable: InvokeAgentBubble + +> `const` **InvokeAgentBubble**: `React.FC`\<`InvokeAgentBubbleProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/tool-bubbles/InvokeAgentBubble.tsx:35](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/tool-bubbles/InvokeAgentBubble.tsx#L35) diff --git a/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/ToolCallBubble/README.md b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/ToolCallBubble/README.md new file mode 100644 index 00000000..7679a889 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/ToolCallBubble/README.md @@ -0,0 +1,33 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/tool-bubbles/ToolCallBubble + +# app/pages/AgentChat/tool-bubbles/ToolCallBubble + +## Interfaces + +- [ToolPair](interfaces/ToolPair.md) + +## Variables + +- [default](variables/default.md) + +## References + +### getMcpShortAction + +Re-exports [getMcpShortAction](../../../../../shared/mcpToolMeta/functions/getMcpShortAction.md) + +*** + +### McpToolInfo + +Re-exports [McpToolInfo](../../../../../shared/mcpToolMeta/interfaces/McpToolInfo.md) + +*** + +### parseMcpToolName + +Re-exports [parseMcpToolName](../../../../../shared/mcpToolMeta/functions/parseMcpToolName.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/ToolCallBubble/interfaces/ToolPair.md b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/ToolCallBubble/interfaces/ToolPair.md new file mode 100644 index 00000000..3ae64d68 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/ToolCallBubble/interfaces/ToolPair.md @@ -0,0 +1,41 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/tool-bubbles/ToolCallBubble](../README.md) / ToolPair + +# Interface: ToolPair + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/tool-bubbles/ToolCallBubble.tsx:32](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/tool-bubbles/ToolCallBubble.tsx#L32) + +## Properties + +### call + +> **call**: [`AgentMessage`](../../../../../../shared/state/agentsSlice/interfaces/AgentMessage.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/tool-bubbles/ToolCallBubble.tsx:35](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/tool-bubbles/ToolCallBubble.tsx#L35) + +*** + +### id + +> **id**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/tool-bubbles/ToolCallBubble.tsx:34](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/tool-bubbles/ToolCallBubble.tsx#L34) + +*** + +### result + +> **result**: [`AgentMessage`](../../../../../../shared/state/agentsSlice/interfaces/AgentMessage.md) \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/tool-bubbles/ToolCallBubble.tsx:36](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/tool-bubbles/ToolCallBubble.tsx#L36) + +*** + +### type + +> **type**: `"tool_pair"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/tool-bubbles/ToolCallBubble.tsx:33](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/tool-bubbles/ToolCallBubble.tsx#L33) diff --git a/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/ToolCallBubble/variables/default.md b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/ToolCallBubble/variables/default.md new file mode 100644 index 00000000..4c3cfeab --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/ToolCallBubble/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/tool-bubbles/ToolCallBubble](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`ToolCallBubbleProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/tool-bubbles/ToolCallBubble.tsx:49](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/tool-bubbles/ToolCallBubble.tsx#L49) diff --git a/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/ToolGroupBubble/README.md b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/ToolGroupBubble/README.md new file mode 100644 index 00000000..54dd4837 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/ToolGroupBubble/README.md @@ -0,0 +1,24 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/tool-bubbles/ToolGroupBubble + +# app/pages/AgentChat/tool-bubbles/ToolGroupBubble + +## Interfaces + +- [ToolGroup](interfaces/ToolGroup.md) + +## Type Aliases + +- [RenderItem](type-aliases/RenderItem.md) + +## Variables + +- [default](variables/default.md) + +## Functions + +- [isToolGroup](functions/isToolGroup.md) +- [isToolPair](functions/isToolPair.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/ToolGroupBubble/functions/isToolGroup.md b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/ToolGroupBubble/functions/isToolGroup.md new file mode 100644 index 00000000..cb4e1197 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/ToolGroupBubble/functions/isToolGroup.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/tool-bubbles/ToolGroupBubble](../README.md) / isToolGroup + +# Function: isToolGroup() + +> **isToolGroup**(`item`): `item is ToolGroup` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/tool-bubbles/ToolGroupBubble.tsx:26](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/tool-bubbles/ToolGroupBubble.tsx#L26) + +## Parameters + +### item + +[`RenderItem`](../type-aliases/RenderItem.md) + +## Returns + +`item is ToolGroup` diff --git a/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/ToolGroupBubble/functions/isToolPair.md b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/ToolGroupBubble/functions/isToolPair.md new file mode 100644 index 00000000..835cce0a --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/ToolGroupBubble/functions/isToolPair.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/tool-bubbles/ToolGroupBubble](../README.md) / isToolPair + +# Function: isToolPair() + +> **isToolPair**(`item`): `item is ToolPair` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/tool-bubbles/ToolGroupBubble.tsx:30](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/tool-bubbles/ToolGroupBubble.tsx#L30) + +## Parameters + +### item + +[`RenderItem`](../type-aliases/RenderItem.md) + +## Returns + +`item is ToolPair` diff --git a/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/ToolGroupBubble/interfaces/ToolGroup.md b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/ToolGroupBubble/interfaces/ToolGroup.md new file mode 100644 index 00000000..f5de55d9 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/ToolGroupBubble/interfaces/ToolGroup.md @@ -0,0 +1,57 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/tool-bubbles/ToolGroupBubble](../README.md) / ToolGroup + +# Interface: ToolGroup + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/tool-bubbles/ToolGroupBubble.tsx:15](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/tool-bubbles/ToolGroupBubble.tsx#L15) + +## Properties + +### callCount + +> **callCount**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/tool-bubbles/ToolGroupBubble.tsx:20](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/tool-bubbles/ToolGroupBubble.tsx#L20) + +*** + +### id + +> **id**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/tool-bubbles/ToolGroupBubble.tsx:17](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/tool-bubbles/ToolGroupBubble.tsx#L17) + +*** + +### label + +> **label**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/tool-bubbles/ToolGroupBubble.tsx:19](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/tool-bubbles/ToolGroupBubble.tsx#L19) + +*** + +### mcpServer? + +> `optional` **mcpServer?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/tool-bubbles/ToolGroupBubble.tsx:21](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/tool-bubbles/ToolGroupBubble.tsx#L21) + +*** + +### pairs + +> **pairs**: [`ToolPair`](../../ToolCallBubble/interfaces/ToolPair.md)[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/tool-bubbles/ToolGroupBubble.tsx:18](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/tool-bubbles/ToolGroupBubble.tsx#L18) + +*** + +### type + +> **type**: `"tool_group"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/tool-bubbles/ToolGroupBubble.tsx:16](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/tool-bubbles/ToolGroupBubble.tsx#L16) diff --git a/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/ToolGroupBubble/type-aliases/RenderItem.md b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/ToolGroupBubble/type-aliases/RenderItem.md new file mode 100644 index 00000000..8831a95e --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/ToolGroupBubble/type-aliases/RenderItem.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/tool-bubbles/ToolGroupBubble](../README.md) / RenderItem + +# Type Alias: RenderItem + +> **RenderItem** = [`AgentMessage`](../../../../../../shared/state/agentsSlice/interfaces/AgentMessage.md) \| [`ToolGroup`](../interfaces/ToolGroup.md) \| [`ToolPair`](../../ToolCallBubble/interfaces/ToolPair.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/tool-bubbles/ToolGroupBubble.tsx:24](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/tool-bubbles/ToolGroupBubble.tsx#L24) diff --git a/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/ToolGroupBubble/variables/default.md b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/ToolGroupBubble/variables/default.md new file mode 100644 index 00000000..454a32cd --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/ToolGroupBubble/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/tool-bubbles/ToolGroupBubble](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/tool-bubbles/ToolGroupBubble.tsx:73](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/tool-bubbles/ToolGroupBubble.tsx#L73) diff --git a/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/useMountReveal/README.md b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/useMountReveal/README.md new file mode 100644 index 00000000..fb08e938 --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/useMountReveal/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/AgentChat/tool-bubbles/useMountReveal + +# app/pages/AgentChat/tool-bubbles/useMountReveal + +## Functions + +- [useMountReveal](functions/useMountReveal.md) diff --git a/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/useMountReveal/functions/useMountReveal.md b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/useMountReveal/functions/useMountReveal.md new file mode 100644 index 00000000..a0ebb7fb --- /dev/null +++ b/frontend/.typedoc/app/pages/AgentChat/tool-bubbles/useMountReveal/functions/useMountReveal.md @@ -0,0 +1,53 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/AgentChat/tool-bubbles/useMountReveal](../README.md) / useMountReveal + +# Function: useMountReveal() + +> **useMountReveal**(`durationMs?`, `travelPx?`): `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/AgentChat/tool-bubbles/useMountReveal.ts:20](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/AgentChat/tool-bubbles/useMountReveal.ts#L20) + +Reliable mount-reveal for elements that should slide+fade in once when they +first appear. Returns an sx fragment to spread onto the element. + +Why this instead of a CSS `@keyframes ... animation`: a mount-time keyframe +fires at most once and silently no-ops in several real cases here (Emotion +injects the keyframe in the same pass the element mounts; the tool bubble +briefly exists as its streaming twin first; a same-frame re-render with the +same animation-name won't restart it). That's why tool bubbles read as +"appears out of nowhere" while the JS-driven streamed text feels smooth. + +This is the same robustness class as the text reveal: render hidden, then on +the NEXT frame flip to shown with a CSS *transition*. A transition always +runs when the property value changes, and the rAF flip guarantees a change +after the first paint, so the reveal can't be skipped. Transform+opacity only, +so it rides the compositor and never nudges layout or scroll. + +## Parameters + +### durationMs? + +`number` = `280` + +### travelPx? + +`number` = `10` + +## Returns + +`object` + +### opacity + +> `readonly` **opacity**: `0` \| `1` + +### transform + +> `readonly` **transform**: `string` + +### transition + +> `readonly` **transition**: `` `opacity ${number}ms cubic-bezier(0.22, 1, 0.36, 1), transform ${number}ms cubic-bezier(0.22, 1, 0.36, 1)` `` diff --git a/frontend/.typedoc/app/pages/Analytics/Analytics/README.md b/frontend/.typedoc/app/pages/Analytics/Analytics/README.md new file mode 100644 index 00000000..338a5f1b --- /dev/null +++ b/frontend/.typedoc/app/pages/Analytics/Analytics/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/pages/Analytics/Analytics + +# app/pages/Analytics/Analytics + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Analytics/Analytics/variables/default.md b/frontend/.typedoc/app/pages/Analytics/Analytics/variables/default.md new file mode 100644 index 00000000..eee30188 --- /dev/null +++ b/frontend/.typedoc/app/pages/Analytics/Analytics/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/Analytics/Analytics](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Analytics/Analytics.tsx:7](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Analytics/Analytics.tsx#L7) diff --git a/frontend/.typedoc/app/pages/Analytics/PixelChart/README.md b/frontend/.typedoc/app/pages/Analytics/PixelChart/README.md new file mode 100644 index 00000000..41ebf6d3 --- /dev/null +++ b/frontend/.typedoc/app/pages/Analytics/PixelChart/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/pages/Analytics/PixelChart + +# app/pages/Analytics/PixelChart + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Analytics/PixelChart/variables/default.md b/frontend/.typedoc/app/pages/Analytics/PixelChart/variables/default.md new file mode 100644 index 00000000..e2395238 --- /dev/null +++ b/frontend/.typedoc/app/pages/Analytics/PixelChart/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/Analytics/PixelChart](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`PixelChartProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Analytics/PixelChart.tsx:28](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Analytics/PixelChart.tsx#L28) diff --git a/frontend/.typedoc/app/pages/Commands/Commands/README.md b/frontend/.typedoc/app/pages/Commands/Commands/README.md new file mode 100644 index 00000000..7cc2a1fa --- /dev/null +++ b/frontend/.typedoc/app/pages/Commands/Commands/README.md @@ -0,0 +1,17 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/pages/Commands/Commands + +# app/pages/Commands/Commands + +## Variables + +- [CommandsContent](variables/CommandsContent.md) + +## References + +### default + +Renames and re-exports [CommandsContent](variables/CommandsContent.md) diff --git a/frontend/.typedoc/app/pages/Commands/Commands/variables/CommandsContent.md b/frontend/.typedoc/app/pages/Commands/Commands/variables/CommandsContent.md new file mode 100644 index 00000000..cea22d1d --- /dev/null +++ b/frontend/.typedoc/app/pages/Commands/Commands/variables/CommandsContent.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/Commands/Commands](../README.md) / CommandsContent + +# Variable: CommandsContent + +> `const` **CommandsContent**: `React.FC` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Commands/Commands.tsx:71](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Commands/Commands.tsx#L71) diff --git a/frontend/.typedoc/app/pages/Customization/Customization/README.md b/frontend/.typedoc/app/pages/Customization/Customization/README.md new file mode 100644 index 00000000..e240dd0b --- /dev/null +++ b/frontend/.typedoc/app/pages/Customization/Customization/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/pages/Customization/Customization + +# app/pages/Customization/Customization + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Customization/Customization/variables/default.md b/frontend/.typedoc/app/pages/Customization/Customization/variables/default.md new file mode 100644 index 00000000..02fbb5df --- /dev/null +++ b/frontend/.typedoc/app/pages/Customization/Customization/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/Customization/Customization](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Customization/Customization.tsx:36](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Customization/Customization.tsx#L36) diff --git a/frontend/.typedoc/app/pages/Dashboard/ChatBubbleTeardrop/README.md b/frontend/.typedoc/app/pages/Dashboard/ChatBubbleTeardrop/README.md new file mode 100644 index 00000000..0ffc9c65 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/ChatBubbleTeardrop/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/pages/Dashboard/ChatBubbleTeardrop + +# app/pages/Dashboard/ChatBubbleTeardrop + +## Functions + +- [default](functions/default.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/ChatBubbleTeardrop/functions/default.md b/frontend/.typedoc/app/pages/Dashboard/ChatBubbleTeardrop/functions/default.md new file mode 100644 index 00000000..e387c6f5 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/ChatBubbleTeardrop/functions/default.md @@ -0,0 +1,27 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/Dashboard/ChatBubbleTeardrop](../README.md) / default + +# Function: default() + +> **default**(`props`): `Element` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/ChatBubbleTeardrop.tsx:7](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/ChatBubbleTeardrop.tsx#L7) + +## Parameters + +### props + +#### sx? + +\{ `fontSize?`: `number`; \} + +#### sx.fontSize? + +`number` + +## Returns + +`Element` diff --git a/frontend/.typedoc/app/pages/Dashboard/Dashboard/README.md b/frontend/.typedoc/app/pages/Dashboard/Dashboard/README.md new file mode 100644 index 00000000..077bd094 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/Dashboard/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/pages/Dashboard/Dashboard + +# app/pages/Dashboard/Dashboard + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/Dashboard/variables/default.md b/frontend/.typedoc/app/pages/Dashboard/Dashboard/variables/default.md new file mode 100644 index 00000000..67bdd037 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/Dashboard/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/Dashboard/Dashboard](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`DashboardProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/Dashboard.tsx:31](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/Dashboard.tsx#L31) diff --git a/frontend/.typedoc/app/pages/Dashboard/DashboardToolbar/README.md b/frontend/.typedoc/app/pages/Dashboard/DashboardToolbar/README.md new file mode 100644 index 00000000..d70c9641 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/DashboardToolbar/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/pages/Dashboard/DashboardToolbar + +# app/pages/Dashboard/DashboardToolbar + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/DashboardToolbar/variables/default.md b/frontend/.typedoc/app/pages/Dashboard/DashboardToolbar/variables/default.md new file mode 100644 index 00000000..78041434 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/DashboardToolbar/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/Dashboard/DashboardToolbar](../README.md) / default + +# Variable: default + +> `const` **default**: `ForwardRefExoticComponent`\<`Props` & `RefAttributes`\<`HTMLDivElement`\>\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/DashboardToolbar.tsx:106](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/DashboardToolbar.tsx#L106) diff --git a/frontend/.typedoc/app/pages/Dashboard/canvas/DashboardCanvas/README.md b/frontend/.typedoc/app/pages/Dashboard/canvas/DashboardCanvas/README.md new file mode 100644 index 00000000..10ca1806 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/canvas/DashboardCanvas/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Dashboard/canvas/DashboardCanvas + +# app/pages/Dashboard/canvas/DashboardCanvas + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/canvas/DashboardCanvas/variables/default.md b/frontend/.typedoc/app/pages/Dashboard/canvas/DashboardCanvas/variables/default.md new file mode 100644 index 00000000..c0388a3d --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/canvas/DashboardCanvas/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Dashboard/canvas/DashboardCanvas](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`DashboardCanvasProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/canvas/DashboardCanvas.tsx:89](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/canvas/DashboardCanvas.tsx#L89) diff --git a/frontend/.typedoc/app/pages/Dashboard/canvas/DashboardCardLayer/README.md b/frontend/.typedoc/app/pages/Dashboard/canvas/DashboardCardLayer/README.md new file mode 100644 index 00000000..d89d91db --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/canvas/DashboardCardLayer/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Dashboard/canvas/DashboardCardLayer + +# app/pages/Dashboard/canvas/DashboardCardLayer + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/canvas/DashboardCardLayer/variables/default.md b/frontend/.typedoc/app/pages/Dashboard/canvas/DashboardCardLayer/variables/default.md new file mode 100644 index 00000000..a8c682b7 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/canvas/DashboardCardLayer/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Dashboard/canvas/DashboardCardLayer](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`DashboardCardLayerProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/canvas/DashboardCardLayer.tsx:57](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/canvas/DashboardCardLayer.tsx#L57) diff --git a/frontend/.typedoc/app/pages/Dashboard/canvas/DashboardEmptyState/README.md b/frontend/.typedoc/app/pages/Dashboard/canvas/DashboardEmptyState/README.md new file mode 100644 index 00000000..ec61e951 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/canvas/DashboardEmptyState/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Dashboard/canvas/DashboardEmptyState + +# app/pages/Dashboard/canvas/DashboardEmptyState + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/canvas/DashboardEmptyState/variables/default.md b/frontend/.typedoc/app/pages/Dashboard/canvas/DashboardEmptyState/variables/default.md new file mode 100644 index 00000000..91381506 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/canvas/DashboardEmptyState/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Dashboard/canvas/DashboardEmptyState](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<\{ `c`: [`ClaudeTokens`](../../../../../../shared/styles/claudeTokens/interfaces/ClaudeTokens.md); `onLaunch?`: (`prompt`, `mode`, `model`) => `void`; `onStarter?`: (`prompt`, `mode?`) => `void`; \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/canvas/DashboardEmptyState.tsx:61](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/canvas/DashboardEmptyState.tsx#L61) diff --git a/frontend/.typedoc/app/pages/Dashboard/canvas/DashboardHeader/README.md b/frontend/.typedoc/app/pages/Dashboard/canvas/DashboardHeader/README.md new file mode 100644 index 00000000..4f112b60 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/canvas/DashboardHeader/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Dashboard/canvas/DashboardHeader + +# app/pages/Dashboard/canvas/DashboardHeader + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/canvas/DashboardHeader/variables/default.md b/frontend/.typedoc/app/pages/Dashboard/canvas/DashboardHeader/variables/default.md new file mode 100644 index 00000000..944aeddb --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/canvas/DashboardHeader/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Dashboard/canvas/DashboardHeader](../README.md) / default + +# Variable: default + +> **default**: `NamedExoticComponent`\<`DashboardHeaderProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/canvas/DashboardHeader.tsx:315](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/canvas/DashboardHeader.tsx#L315) diff --git a/frontend/.typedoc/app/pages/Dashboard/canvas/DashboardOverlays/README.md b/frontend/.typedoc/app/pages/Dashboard/canvas/DashboardOverlays/README.md new file mode 100644 index 00000000..89212654 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/canvas/DashboardOverlays/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Dashboard/canvas/DashboardOverlays + +# app/pages/Dashboard/canvas/DashboardOverlays + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/canvas/DashboardOverlays/variables/default.md b/frontend/.typedoc/app/pages/Dashboard/canvas/DashboardOverlays/variables/default.md new file mode 100644 index 00000000..96e36eca --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/canvas/DashboardOverlays/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Dashboard/canvas/DashboardOverlays](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`DashboardOverlaysProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/canvas/DashboardOverlays.tsx:48](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/canvas/DashboardOverlays.tsx#L48) diff --git a/frontend/.typedoc/app/pages/Dashboard/canvas/TetherLayer/README.md b/frontend/.typedoc/app/pages/Dashboard/canvas/TetherLayer/README.md new file mode 100644 index 00000000..12138f99 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/canvas/TetherLayer/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Dashboard/canvas/TetherLayer + +# app/pages/Dashboard/canvas/TetherLayer + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/canvas/TetherLayer/variables/default.md b/frontend/.typedoc/app/pages/Dashboard/canvas/TetherLayer/variables/default.md new file mode 100644 index 00000000..ded52d81 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/canvas/TetherLayer/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Dashboard/canvas/TetherLayer](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`TetherLayerProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/canvas/TetherLayer.tsx:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/canvas/TetherLayer.tsx#L12) diff --git a/frontend/.typedoc/app/pages/Dashboard/cards/AgentCard/README.md b/frontend/.typedoc/app/pages/Dashboard/cards/AgentCard/README.md new file mode 100644 index 00000000..8daeb194 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/cards/AgentCard/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Dashboard/cards/AgentCard + +# app/pages/Dashboard/cards/AgentCard + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/cards/AgentCard/variables/default.md b/frontend/.typedoc/app/pages/Dashboard/cards/AgentCard/variables/default.md new file mode 100644 index 00000000..1cafacc3 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/cards/AgentCard/variables/default.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Dashboard/cards/AgentCard](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`OuterProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/cards/AgentCard.tsx:1042](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/cards/AgentCard.tsx#L1042) + +Self-subscribing wrapper; each card reads only its own session+position so streaming to A doesn't disturb B. diff --git a/frontend/.typedoc/app/pages/Dashboard/cards/BrowserAgentOverlay/README.md b/frontend/.typedoc/app/pages/Dashboard/cards/BrowserAgentOverlay/README.md new file mode 100644 index 00000000..c51adda2 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/cards/BrowserAgentOverlay/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Dashboard/cards/BrowserAgentOverlay + +# app/pages/Dashboard/cards/BrowserAgentOverlay + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/cards/BrowserAgentOverlay/variables/default.md b/frontend/.typedoc/app/pages/Dashboard/cards/BrowserAgentOverlay/variables/default.md new file mode 100644 index 00000000..ebb9550b --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/cards/BrowserAgentOverlay/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Dashboard/cards/BrowserAgentOverlay](../README.md) / default + +# Variable: default + +> **default**: `NamedExoticComponent`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/cards/BrowserAgentOverlay.tsx:473](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/cards/BrowserAgentOverlay.tsx#L473) diff --git a/frontend/.typedoc/app/pages/Dashboard/cards/BrowserCard/README.md b/frontend/.typedoc/app/pages/Dashboard/cards/BrowserCard/README.md new file mode 100644 index 00000000..eaabdfaa --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/cards/BrowserCard/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Dashboard/cards/BrowserCard + +# app/pages/Dashboard/cards/BrowserCard + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/cards/BrowserCard/variables/default.md b/frontend/.typedoc/app/pages/Dashboard/cards/BrowserCard/variables/default.md new file mode 100644 index 00000000..cbb737fd --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/cards/BrowserCard/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Dashboard/cards/BrowserCard](../README.md) / default + +# Variable: default + +> **default**: `NamedExoticComponent`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/cards/BrowserCard.tsx:1391](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/cards/BrowserCard.tsx#L1391) diff --git a/frontend/.typedoc/app/pages/Dashboard/cards/BrowserReplayOverlay/README.md b/frontend/.typedoc/app/pages/Dashboard/cards/BrowserReplayOverlay/README.md new file mode 100644 index 00000000..51f6ee5a --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/cards/BrowserReplayOverlay/README.md @@ -0,0 +1,16 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Dashboard/cards/BrowserReplayOverlay + +# app/pages/Dashboard/cards/BrowserReplayOverlay + +## Interfaces + +- [BrowserReplayOverlayProps](interfaces/BrowserReplayOverlayProps.md) +- [ReplayRow](interfaces/ReplayRow.md) + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/cards/BrowserReplayOverlay/interfaces/BrowserReplayOverlayProps.md b/frontend/.typedoc/app/pages/Dashboard/cards/BrowserReplayOverlay/interfaces/BrowserReplayOverlayProps.md new file mode 100644 index 00000000..49c3063e --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/cards/BrowserReplayOverlay/interfaces/BrowserReplayOverlayProps.md @@ -0,0 +1,57 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Dashboard/cards/BrowserReplayOverlay](../README.md) / BrowserReplayOverlayProps + +# Interface: BrowserReplayOverlayProps + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/cards/BrowserReplayOverlay.tsx:31](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/cards/BrowserReplayOverlay.tsx#L31) + +## Properties + +### active + +> **active**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/cards/BrowserReplayOverlay.tsx:32](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/cards/BrowserReplayOverlay.tsx#L32) + +*** + +### elapsedMs? + +> `optional` **elapsedMs?**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/cards/BrowserReplayOverlay.tsx:37](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/cards/BrowserReplayOverlay.tsx#L37) + +*** + +### rows + +> **rows**: [`ReplayRow`](ReplayRow.md)[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/cards/BrowserReplayOverlay.tsx:34](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/cards/BrowserReplayOverlay.tsx#L34) + +*** + +### site + +> **site**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/cards/BrowserReplayOverlay.tsx:33](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/cards/BrowserReplayOverlay.tsx#L33) + +*** + +### status + +> **status**: `"done"` \| `"reading"` \| `"empty"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/cards/BrowserReplayOverlay.tsx:36](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/cards/BrowserReplayOverlay.tsx#L36) + +*** + +### total + +> **total**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/cards/BrowserReplayOverlay.tsx:35](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/cards/BrowserReplayOverlay.tsx#L35) diff --git a/frontend/.typedoc/app/pages/Dashboard/cards/BrowserReplayOverlay/interfaces/ReplayRow.md b/frontend/.typedoc/app/pages/Dashboard/cards/BrowserReplayOverlay/interfaces/ReplayRow.md new file mode 100644 index 00000000..d7b30e99 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/cards/BrowserReplayOverlay/interfaces/ReplayRow.md @@ -0,0 +1,25 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Dashboard/cards/BrowserReplayOverlay](../README.md) / ReplayRow + +# Interface: ReplayRow + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/cards/BrowserReplayOverlay.tsx:26](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/cards/BrowserReplayOverlay.tsx#L26) + +## Properties + +### subtitle? + +> `optional` **subtitle?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/cards/BrowserReplayOverlay.tsx:28](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/cards/BrowserReplayOverlay.tsx#L28) + +*** + +### title + +> **title**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/cards/BrowserReplayOverlay.tsx:27](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/cards/BrowserReplayOverlay.tsx#L27) diff --git a/frontend/.typedoc/app/pages/Dashboard/cards/BrowserReplayOverlay/variables/default.md b/frontend/.typedoc/app/pages/Dashboard/cards/BrowserReplayOverlay/variables/default.md new file mode 100644 index 00000000..640e9c42 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/cards/BrowserReplayOverlay/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Dashboard/cards/BrowserReplayOverlay](../README.md) / default + +# Variable: default + +> **default**: `MemoExoticComponent`\<(`__namedParameters`) => `Element`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/cards/BrowserReplayOverlay.tsx:128](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/cards/BrowserReplayOverlay.tsx#L128) diff --git a/frontend/.typedoc/app/pages/Dashboard/cards/DashboardViewCard/README.md b/frontend/.typedoc/app/pages/Dashboard/cards/DashboardViewCard/README.md new file mode 100644 index 00000000..7a21acdc --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/cards/DashboardViewCard/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Dashboard/cards/DashboardViewCard + +# app/pages/Dashboard/cards/DashboardViewCard + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/cards/DashboardViewCard/variables/default.md b/frontend/.typedoc/app/pages/Dashboard/cards/DashboardViewCard/variables/default.md new file mode 100644 index 00000000..d45d356d --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/cards/DashboardViewCard/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Dashboard/cards/DashboardViewCard](../README.md) / default + +# Variable: default + +> **default**: `NamedExoticComponent`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/cards/DashboardViewCard.tsx:482](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/cards/DashboardViewCard.tsx#L482) diff --git a/frontend/.typedoc/app/pages/Dashboard/cards/NoteCard/README.md b/frontend/.typedoc/app/pages/Dashboard/cards/NoteCard/README.md new file mode 100644 index 00000000..2e9c19b7 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/cards/NoteCard/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Dashboard/cards/NoteCard + +# app/pages/Dashboard/cards/NoteCard + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/cards/NoteCard/variables/default.md b/frontend/.typedoc/app/pages/Dashboard/cards/NoteCard/variables/default.md new file mode 100644 index 00000000..5af4d980 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/cards/NoteCard/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Dashboard/cards/NoteCard](../README.md) / default + +# Variable: default + +> **default**: `NamedExoticComponent`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/cards/NoteCard.tsx:421](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/cards/NoteCard.tsx#L421) diff --git a/frontend/.typedoc/app/pages/Dashboard/controls/CanvasControls/README.md b/frontend/.typedoc/app/pages/Dashboard/controls/CanvasControls/README.md new file mode 100644 index 00000000..99878374 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/controls/CanvasControls/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Dashboard/controls/CanvasControls + +# app/pages/Dashboard/controls/CanvasControls + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/controls/CanvasControls/variables/default.md b/frontend/.typedoc/app/pages/Dashboard/controls/CanvasControls/variables/default.md new file mode 100644 index 00000000..f3bb0e3e --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/controls/CanvasControls/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Dashboard/controls/CanvasControls](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/controls/CanvasControls.tsx:36](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/controls/CanvasControls.tsx#L36) diff --git a/frontend/.typedoc/app/pages/Dashboard/controls/CardSearchPalette/README.md b/frontend/.typedoc/app/pages/Dashboard/controls/CardSearchPalette/README.md new file mode 100644 index 00000000..a99efedc --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/controls/CardSearchPalette/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Dashboard/controls/CardSearchPalette + +# app/pages/Dashboard/controls/CardSearchPalette + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/controls/CardSearchPalette/variables/default.md b/frontend/.typedoc/app/pages/Dashboard/controls/CardSearchPalette/variables/default.md new file mode 100644 index 00000000..0095c16f --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/controls/CardSearchPalette/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Dashboard/controls/CardSearchPalette](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/controls/CardSearchPalette.tsx:27](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/controls/CardSearchPalette.tsx#L27) diff --git a/frontend/.typedoc/app/pages/Dashboard/controls/CloseAgentDialog/README.md b/frontend/.typedoc/app/pages/Dashboard/controls/CloseAgentDialog/README.md new file mode 100644 index 00000000..bcdb9322 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/controls/CloseAgentDialog/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Dashboard/controls/CloseAgentDialog + +# app/pages/Dashboard/controls/CloseAgentDialog + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/controls/CloseAgentDialog/variables/default.md b/frontend/.typedoc/app/pages/Dashboard/controls/CloseAgentDialog/variables/default.md new file mode 100644 index 00000000..663024a4 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/controls/CloseAgentDialog/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Dashboard/controls/CloseAgentDialog](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/controls/CloseAgentDialog.tsx:16](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/controls/CloseAgentDialog.tsx#L16) diff --git a/frontend/.typedoc/app/pages/Dashboard/controls/DirectionHints/README.md b/frontend/.typedoc/app/pages/Dashboard/controls/DirectionHints/README.md new file mode 100644 index 00000000..65a0f6fa --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/controls/DirectionHints/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Dashboard/controls/DirectionHints + +# app/pages/Dashboard/controls/DirectionHints + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/controls/DirectionHints/variables/default.md b/frontend/.typedoc/app/pages/Dashboard/controls/DirectionHints/variables/default.md new file mode 100644 index 00000000..3c9f07ad --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/controls/DirectionHints/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Dashboard/controls/DirectionHints](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/controls/DirectionHints.tsx:32](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/controls/DirectionHints.tsx#L32) diff --git a/frontend/.typedoc/app/pages/Dashboard/controls/Minimap/README.md b/frontend/.typedoc/app/pages/Dashboard/controls/Minimap/README.md new file mode 100644 index 00000000..c5253a97 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/controls/Minimap/README.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Dashboard/controls/Minimap + +# app/pages/Dashboard/controls/Minimap + +## Interfaces + +- [MinimapProps](interfaces/MinimapProps.md) + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/controls/Minimap/interfaces/MinimapProps.md b/frontend/.typedoc/app/pages/Dashboard/controls/Minimap/interfaces/MinimapProps.md new file mode 100644 index 00000000..7ea37b83 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/controls/Minimap/interfaces/MinimapProps.md @@ -0,0 +1,87 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Dashboard/controls/Minimap](../README.md) / MinimapProps + +# Interface: MinimapProps + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/controls/Minimap.tsx:9](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/controls/Minimap.tsx#L9) + +## Properties + +### browserCards + +> **browserCards**: `Record`\<`string`, [`BrowserCardPosition`](../../../../../../shared/state/dashboardLayoutSlice/interfaces/BrowserCardPosition.md)\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/controls/Minimap.tsx:16](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/controls/Minimap.tsx#L16) + +*** + +### cards + +> **cards**: `Record`\<`string`, [`CardPosition`](../../../../../../shared/state/dashboardLayoutSlice/interfaces/CardPosition.md)\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/controls/Minimap.tsx:14](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/controls/Minimap.tsx#L14) + +*** + +### onPan + +> **onPan**: (`panX`, `panY`) => `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/controls/Minimap.tsx:17](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/controls/Minimap.tsx#L17) + +#### Parameters + +##### panX + +`number` + +##### panY + +`number` + +#### Returns + +`void` + +*** + +### panX + +> **panX**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/controls/Minimap.tsx:10](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/controls/Minimap.tsx#L10) + +*** + +### panY + +> **panY**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/controls/Minimap.tsx:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/controls/Minimap.tsx#L11) + +*** + +### viewCards + +> **viewCards**: `Record`\<`string`, [`ViewCardPosition`](../../../../../../shared/state/dashboardLayoutSlice/interfaces/ViewCardPosition.md)\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/controls/Minimap.tsx:15](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/controls/Minimap.tsx#L15) + +*** + +### viewportRef + +> **viewportRef**: `RefObject`\<`HTMLDivElement` \| `null`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/controls/Minimap.tsx:13](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/controls/Minimap.tsx#L13) + +*** + +### zoom + +> **zoom**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/controls/Minimap.tsx:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/controls/Minimap.tsx#L12) diff --git a/frontend/.typedoc/app/pages/Dashboard/controls/Minimap/variables/default.md b/frontend/.typedoc/app/pages/Dashboard/controls/Minimap/variables/default.md new file mode 100644 index 00000000..2eb07948 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/controls/Minimap/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Dashboard/controls/Minimap](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<[`MinimapProps`](../interfaces/MinimapProps.md)\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/controls/Minimap.tsx:28](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/controls/Minimap.tsx#L28) diff --git a/frontend/.typedoc/app/pages/Dashboard/geometry/captureDashboardThumbnail/README.md b/frontend/.typedoc/app/pages/Dashboard/geometry/captureDashboardThumbnail/README.md new file mode 100644 index 00000000..cc8cdcb2 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/geometry/captureDashboardThumbnail/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Dashboard/geometry/captureDashboardThumbnail + +# app/pages/Dashboard/geometry/captureDashboardThumbnail + +## Functions + +- [captureDashboardThumbnail](functions/captureDashboardThumbnail.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/geometry/captureDashboardThumbnail/functions/captureDashboardThumbnail.md b/frontend/.typedoc/app/pages/Dashboard/geometry/captureDashboardThumbnail/functions/captureDashboardThumbnail.md new file mode 100644 index 00000000..6230c630 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/geometry/captureDashboardThumbnail/functions/captureDashboardThumbnail.md @@ -0,0 +1,31 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Dashboard/geometry/captureDashboardThumbnail](../README.md) / captureDashboardThumbnail + +# Function: captureDashboardThumbnail() + +> **captureDashboardThumbnail**(`viewportEl`, `_contentEl`, `_allCards`): `Promise`\<`string` \| `null`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/geometry/captureDashboardThumbnail.ts:10](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/geometry/captureDashboardThumbnail.ts#L10) + +Screenshots the dashboard viewport via Electron capturePage, leaving pan/zoom untouched. + +## Parameters + +### viewportEl + +`HTMLDivElement` + +### \_contentEl + +`HTMLDivElement` + +### \_allCards + +`AllCards` + +## Returns + +`Promise`\<`string` \| `null`\> diff --git a/frontend/.typedoc/app/pages/Dashboard/geometry/contentBounds/README.md b/frontend/.typedoc/app/pages/Dashboard/geometry/contentBounds/README.md new file mode 100644 index 00000000..870936af --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/geometry/contentBounds/README.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Dashboard/geometry/contentBounds + +# app/pages/Dashboard/geometry/contentBounds + +## Interfaces + +- [ContentBounds](interfaces/ContentBounds.md) + +## Functions + +- [computeContentBounds](functions/computeContentBounds.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/geometry/contentBounds/functions/computeContentBounds.md b/frontend/.typedoc/app/pages/Dashboard/geometry/contentBounds/functions/computeContentBounds.md new file mode 100644 index 00000000..94048121 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/geometry/contentBounds/functions/computeContentBounds.md @@ -0,0 +1,29 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Dashboard/geometry/contentBounds](../README.md) / computeContentBounds + +# Function: computeContentBounds() + +> **computeContentBounds**(`cards`, `viewCards`, `browserCards`): [`ContentBounds`](../interfaces/ContentBounds.md) \| `undefined` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/geometry/contentBounds.ts:16](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/geometry/contentBounds.ts#L16) + +## Parameters + +### cards + +`Record`\<`string`, [`CardPosition`](../../../../../../shared/state/dashboardLayoutSlice/interfaces/CardPosition.md)\> + +### viewCards + +`Record`\<`string`, [`ViewCardPosition`](../../../../../../shared/state/dashboardLayoutSlice/interfaces/ViewCardPosition.md)\> + +### browserCards + +`Record`\<`string`, [`BrowserCardPosition`](../../../../../../shared/state/dashboardLayoutSlice/interfaces/BrowserCardPosition.md)\> + +## Returns + +[`ContentBounds`](../interfaces/ContentBounds.md) \| `undefined` diff --git a/frontend/.typedoc/app/pages/Dashboard/geometry/contentBounds/interfaces/ContentBounds.md b/frontend/.typedoc/app/pages/Dashboard/geometry/contentBounds/interfaces/ContentBounds.md new file mode 100644 index 00000000..b5c86302 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/geometry/contentBounds/interfaces/ContentBounds.md @@ -0,0 +1,41 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Dashboard/geometry/contentBounds](../README.md) / ContentBounds + +# Interface: ContentBounds + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/geometry/contentBounds.ts:7](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/geometry/contentBounds.ts#L7) + +## Properties + +### maxX + +> **maxX**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/geometry/contentBounds.ts:10](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/geometry/contentBounds.ts#L10) + +*** + +### maxY + +> **maxY**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/geometry/contentBounds.ts:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/geometry/contentBounds.ts#L11) + +*** + +### minX + +> **minX**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/geometry/contentBounds.ts:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/geometry/contentBounds.ts#L8) + +*** + +### minY + +> **minY**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/geometry/contentBounds.ts:9](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/geometry/contentBounds.ts#L9) diff --git a/frontend/.typedoc/app/pages/Dashboard/geometry/dashboardTethers/README.md b/frontend/.typedoc/app/pages/Dashboard/geometry/dashboardTethers/README.md new file mode 100644 index 00000000..33e62f9c --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/geometry/dashboardTethers/README.md @@ -0,0 +1,16 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Dashboard/geometry/dashboardTethers + +# app/pages/Dashboard/geometry/dashboardTethers + +## Interfaces + +- [Tether](interfaces/Tether.md) + +## Functions + +- [elbowPath](functions/elbowPath.md) +- [useTethers](functions/useTethers.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/geometry/dashboardTethers/functions/elbowPath.md b/frontend/.typedoc/app/pages/Dashboard/geometry/dashboardTethers/functions/elbowPath.md new file mode 100644 index 00000000..bd98dbf5 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/geometry/dashboardTethers/functions/elbowPath.md @@ -0,0 +1,33 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Dashboard/geometry/dashboardTethers](../README.md) / elbowPath + +# Function: elbowPath() + +> **elbowPath**(`x1`, `y1`, `x2`, `y2`): `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/geometry/dashboardTethers.ts:36](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/geometry/dashboardTethers.ts#L36) + +## Parameters + +### x1 + +`number` + +### y1 + +`number` + +### x2 + +`number` + +### y2 + +`number` + +## Returns + +`string` diff --git a/frontend/.typedoc/app/pages/Dashboard/geometry/dashboardTethers/functions/useTethers.md b/frontend/.typedoc/app/pages/Dashboard/geometry/dashboardTethers/functions/useTethers.md new file mode 100644 index 00000000..c657f7c6 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/geometry/dashboardTethers/functions/useTethers.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Dashboard/geometry/dashboardTethers](../README.md) / useTethers + +# Function: useTethers() + +> **useTethers**(`__namedParameters`): [`Tether`](../interfaces/Tether.md)[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/geometry/dashboardTethers.ts:70](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/geometry/dashboardTethers.ts#L70) + +## Parameters + +### \_\_namedParameters + +`UseTethersArgs` + +## Returns + +[`Tether`](../interfaces/Tether.md)[] diff --git a/frontend/.typedoc/app/pages/Dashboard/geometry/dashboardTethers/interfaces/Tether.md b/frontend/.typedoc/app/pages/Dashboard/geometry/dashboardTethers/interfaces/Tether.md new file mode 100644 index 00000000..41f51c60 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/geometry/dashboardTethers/interfaces/Tether.md @@ -0,0 +1,57 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Dashboard/geometry/dashboardTethers](../README.md) / Tether + +# Interface: Tether + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/geometry/dashboardTethers.ts:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/geometry/dashboardTethers.ts#L8) + +## Properties + +### fading + +> **fading**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/geometry/dashboardTethers.ts:14](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/geometry/dashboardTethers.ts#L14) + +*** + +### key + +> **key**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/geometry/dashboardTethers.ts:9](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/geometry/dashboardTethers.ts#L9) + +*** + +### label + +> **label**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/geometry/dashboardTethers.ts:13](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/geometry/dashboardTethers.ts#L13) + +*** + +### labelX + +> **labelX**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/geometry/dashboardTethers.ts:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/geometry/dashboardTethers.ts#L11) + +*** + +### labelY + +> **labelY**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/geometry/dashboardTethers.ts:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/geometry/dashboardTethers.ts#L12) + +*** + +### path + +> **path**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/geometry/dashboardTethers.ts:10](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/geometry/dashboardTethers.ts#L10) diff --git a/frontend/.typedoc/app/pages/Dashboard/geometry/getCardRect/README.md b/frontend/.typedoc/app/pages/Dashboard/geometry/getCardRect/README.md new file mode 100644 index 00000000..5a1206d9 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/geometry/getCardRect/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Dashboard/geometry/getCardRect + +# app/pages/Dashboard/geometry/getCardRect + +## Functions + +- [getCardRect](functions/getCardRect.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/geometry/getCardRect/functions/getCardRect.md b/frontend/.typedoc/app/pages/Dashboard/geometry/getCardRect/functions/getCardRect.md new file mode 100644 index 00000000..82ca7660 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/geometry/getCardRect/functions/getCardRect.md @@ -0,0 +1,25 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Dashboard/geometry/getCardRect](../README.md) / getCardRect + +# Function: getCardRect() + +> **getCardRect**(`id`, `type`): \{ `height`: `number`; `width`: `number`; `x`: `number`; `y`: `number`; \} \| `undefined` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/geometry/getCardRect.ts:7](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/geometry/getCardRect.ts#L7) + +## Parameters + +### id + +`string` + +### type + +[`CardType`](../../../../../../shared/state/dashboardLayoutSlice/type-aliases/CardType.md) + +## Returns + +\{ `height`: `number`; `width`: `number`; `x`: `number`; `y`: `number`; \} \| `undefined` diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useArrowNav/README.md b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useArrowNav/README.md new file mode 100644 index 00000000..5c3a35e7 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useArrowNav/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Dashboard/hooks/interaction/useArrowNav + +# app/pages/Dashboard/hooks/interaction/useArrowNav + +## Functions + +- [useArrowNav](functions/useArrowNav.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useArrowNav/functions/useArrowNav.md b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useArrowNav/functions/useArrowNav.md new file mode 100644 index 00000000..41a0f936 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useArrowNav/functions/useArrowNav.md @@ -0,0 +1,45 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Dashboard/hooks/interaction/useArrowNav](../README.md) / useArrowNav + +# Function: useArrowNav() + +> **useArrowNav**(`__namedParameters`): `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/hooks/interaction/useArrowNav.ts:24](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/hooks/interaction/useArrowNav.ts#L24) + +## Parameters + +### \_\_namedParameters + +`UseArrowNavArgs` + +## Returns + +`object` + +### neighborDirections + +> **neighborDirections**: `object` + +#### neighborDirections.down + +> **down**: `boolean` = `false` + +#### neighborDirections.left + +> **left**: `boolean` = `false` + +#### neighborDirections.right + +> **right**: `boolean` = `false` + +#### neighborDirections.up + +> **up**: `boolean` = `false` + +### shakeDirection + +> **shakeDirection**: `Direction` \| `null` diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useCanvasControls/README.md b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useCanvasControls/README.md new file mode 100644 index 00000000..3413263b --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useCanvasControls/README.md @@ -0,0 +1,19 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Dashboard/hooks/interaction/useCanvasControls + +# app/pages/Dashboard/hooks/interaction/useCanvasControls + +## Interfaces + +- [ContentBounds](interfaces/ContentBounds.md) + +## Type Aliases + +- [CanvasActions](type-aliases/CanvasActions.md) + +## Functions + +- [useCanvasControls](functions/useCanvasControls.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useCanvasControls/functions/useCanvasControls.md b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useCanvasControls/functions/useCanvasControls.md new file mode 100644 index 00000000..e190d3af --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useCanvasControls/functions/useCanvasControls.md @@ -0,0 +1,193 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Dashboard/hooks/interaction/useCanvasControls](../README.md) / useCanvasControls + +# Function: useCanvasControls() + +> **useCanvasControls**(`zoomSensitivity?`, `contentBounds?`, `enabled?`): `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/hooks/interaction/useCanvasControls.ts:32](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/hooks/interaction/useCanvasControls.ts#L32) + +## Parameters + +### zoomSensitivity? + +`number` = `50` + +### contentBounds? + +[`ContentBounds`](../interfaces/ContentBounds.md) + +### enabled? + +`boolean` = `true` + +## Returns + +`object` + +### actions + +> **actions**: `object` + +#### actions.animateTo + +> **animateTo**: (`target`, `duration`) => `void` + +##### Parameters + +###### target + +`CanvasState` + +###### duration? + +`number` = `320` + +##### Returns + +`void` + +#### actions.cancelAnimation + +> **cancelAnimation**: () => `void` + +##### Returns + +`void` + +#### actions.fitToCards + +> **fitToCards**: (`cardRects`, `maxZoom?`, `animate?`, `minZoom?`) => `void` + +##### Parameters + +###### cardRects + +`object`[] + +###### maxZoom? + +`number` + +###### animate? + +`boolean` + +###### minZoom? + +`number` + +##### Returns + +`void` + +#### actions.fitToView + +> **fitToView**: () => `void` + +##### Returns + +`void` + +#### actions.resetZoom + +> **resetZoom**: () => `void` + +##### Returns + +`void` + +#### actions.setState + +> **setState**: `Dispatch`\<`SetStateAction`\<`CanvasState`\>\> + +#### actions.zoomIn + +> **zoomIn**: () => `void` + +##### Returns + +`void` + +#### actions.zoomOut + +> **zoomOut**: () => `void` + +##### Returns + +`void` + +### cmdHeld + +> **cmdHeld**: `boolean` + +### contentRef + +> **contentRef**: `RefObject`\<`HTMLDivElement`\> + +### handlers + +> **handlers**: `object` + +#### handlers.onMouseDown + +> **onMouseDown**: (`e`) => `void` = `handleMouseDown` + +##### Parameters + +###### e + +`MouseEvent` + +##### Returns + +`void` + +#### handlers.onMouseMove + +> **onMouseMove**: (`e`) => `void` = `handleMouseMove` + +##### Parameters + +###### e + +`MouseEvent` + +##### Returns + +`void` + +#### handlers.onMouseUp + +> **onMouseUp**: () => `void` = `handleMouseUp` + +##### Returns + +`void` + +### isPanning + +> **isPanning**: `boolean` + +### panX + +> `readonly` **panX**: `number` + +### panY + +> `readonly` **panY**: `number` + +### spaceHeld + +> **spaceHeld**: `boolean` + +### viewportRef + +> **viewportRef**: `RefObject`\<`HTMLDivElement`\> + +### zoom + +> `readonly` **zoom**: `number` diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useCanvasControls/interfaces/ContentBounds.md b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useCanvasControls/interfaces/ContentBounds.md new file mode 100644 index 00000000..97028dfb --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useCanvasControls/interfaces/ContentBounds.md @@ -0,0 +1,41 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Dashboard/hooks/interaction/useCanvasControls](../README.md) / ContentBounds + +# Interface: ContentBounds + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/hooks/interaction/useCanvasControls.ts:25](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/hooks/interaction/useCanvasControls.ts#L25) + +## Properties + +### maxX + +> **maxX**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/hooks/interaction/useCanvasControls.ts:28](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/hooks/interaction/useCanvasControls.ts#L28) + +*** + +### maxY + +> **maxY**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/hooks/interaction/useCanvasControls.ts:29](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/hooks/interaction/useCanvasControls.ts#L29) + +*** + +### minX + +> **minX**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/hooks/interaction/useCanvasControls.ts:26](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/hooks/interaction/useCanvasControls.ts#L26) + +*** + +### minY + +> **minY**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/hooks/interaction/useCanvasControls.ts:27](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/hooks/interaction/useCanvasControls.ts#L27) diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useCanvasControls/type-aliases/CanvasActions.md b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useCanvasControls/type-aliases/CanvasActions.md new file mode 100644 index 00000000..b6964cb6 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useCanvasControls/type-aliases/CanvasActions.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Dashboard/hooks/interaction/useCanvasControls](../README.md) / CanvasActions + +# Type Alias: CanvasActions + +> **CanvasActions** = `ReturnType`\<*typeof* [`useCanvasControls`](../functions/useCanvasControls.md)\>\[`"actions"`\] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/hooks/interaction/useCanvasControls.ts:672](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/hooks/interaction/useCanvasControls.ts#L672) diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useCardDrag/README.md b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useCardDrag/README.md new file mode 100644 index 00000000..0b66f526 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useCardDrag/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Dashboard/hooks/interaction/useCardDrag + +# app/pages/Dashboard/hooks/interaction/useCardDrag + +## Functions + +- [useCardDrag](functions/useCardDrag.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useCardDrag/functions/useCardDrag.md b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useCardDrag/functions/useCardDrag.md new file mode 100644 index 00000000..4e13b089 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useCardDrag/functions/useCardDrag.md @@ -0,0 +1,95 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Dashboard/hooks/interaction/useCardDrag](../README.md) / useCardDrag + +# Function: useCardDrag() + +> **useCardDrag**(`__namedParameters`): `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/hooks/interaction/useCardDrag.ts:22](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/hooks/interaction/useCardDrag.ts#L22) + +## Parameters + +### \_\_namedParameters + +`UseCardDragArgs` + +## Returns + +`object` + +### handleCardDragEnd + +> **handleCardDragEnd**: (`dx`, `dy`, `didDrag`) => `void` + +#### Parameters + +##### dx + +`number` + +##### dy + +`number` + +##### didDrag + +`boolean` + +#### Returns + +`void` + +### handleCardDragMove + +> **handleCardDragMove**: (`dx`, `dy`, `mouseX?`, `mouseY?`) => `void` + +#### Parameters + +##### dx + +`number` + +##### dy + +`number` + +##### mouseX? + +`number` + +##### mouseY? + +`number` + +#### Returns + +`void` + +### handleCardDragStart + +> **handleCardDragStart**: (`id`, `_type`) => `void` + +#### Parameters + +##### id + +`string` + +##### \_type + +[`CardType`](../../../../../../../shared/state/dashboardLayoutSlice/type-aliases/CardType.md) + +#### Returns + +`void` + +### liveDragInfo + +> **liveDragInfo**: \{ `cardId`: `string`; `dx`: `number`; `dy`: `number`; \} \| `null` + +### multiDragDelta + +> **multiDragDelta**: \{ `dx`: `number`; `dy`: `number`; \} \| `null` diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useDashboardClipboard/README.md b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useDashboardClipboard/README.md new file mode 100644 index 00000000..b07af819 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useDashboardClipboard/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Dashboard/hooks/interaction/useDashboardClipboard + +# app/pages/Dashboard/hooks/interaction/useDashboardClipboard + +## Functions + +- [useDashboardClipboard](functions/useDashboardClipboard.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useDashboardClipboard/functions/useDashboardClipboard.md b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useDashboardClipboard/functions/useDashboardClipboard.md new file mode 100644 index 00000000..23e6a391 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useDashboardClipboard/functions/useDashboardClipboard.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Dashboard/hooks/interaction/useDashboardClipboard](../README.md) / useDashboardClipboard + +# Function: useDashboardClipboard() + +> **useDashboardClipboard**(`__namedParameters`): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/hooks/interaction/useDashboardClipboard.ts:34](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/hooks/interaction/useDashboardClipboard.ts#L34) + +## Parameters + +### \_\_namedParameters + +`UseDashboardClipboardArgs` + +## Returns + +`void` diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useDashboardInteractions/README.md b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useDashboardInteractions/README.md new file mode 100644 index 00000000..5cecc05c --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useDashboardInteractions/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Dashboard/hooks/interaction/useDashboardInteractions + +# app/pages/Dashboard/hooks/interaction/useDashboardInteractions + +## Functions + +- [useDashboardInteractions](functions/useDashboardInteractions.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useDashboardInteractions/functions/useDashboardInteractions.md b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useDashboardInteractions/functions/useDashboardInteractions.md new file mode 100644 index 00000000..c1f3050d --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useDashboardInteractions/functions/useDashboardInteractions.md @@ -0,0 +1,135 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Dashboard/hooks/interaction/useDashboardInteractions](../README.md) / useDashboardInteractions + +# Function: useDashboardInteractions() + +> **useDashboardInteractions**(`__namedParameters`): `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/hooks/interaction/useDashboardInteractions.ts:32](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/hooks/interaction/useDashboardInteractions.ts#L32) + +## Parameters + +### \_\_namedParameters + +`UseDashboardInteractionsArgs` + +## Returns + +`object` + +### handleBringToFront + +> **handleBringToFront**: (`id`, `type`) => `void` + +#### Parameters + +##### id + +`string` + +##### type + +[`CardType`](../../../../../../../shared/state/dashboardLayoutSlice/type-aliases/CardType.md) + +#### Returns + +`void` + +### handleCardDoubleClick + +> **handleCardDoubleClick**: (`id`, `type`) => `void` + +#### Parameters + +##### id + +`string` + +##### type + +[`CardType`](../../../../../../../shared/state/dashboardLayoutSlice/type-aliases/CardType.md) + +#### Returns + +`void` + +### handleCardSelect + +> **handleCardSelect**: (`id`, `type`, `shiftKey`) => `void` + +#### Parameters + +##### id + +`string` + +##### type + +[`CardType`](../../../../../../../shared/state/dashboardLayoutSlice/type-aliases/CardType.md) + +##### shiftKey + +`boolean` + +#### Returns + +`void` + +### handleViewportDoubleClick + +> **handleViewportDoubleClick**: (`e`) => `void` + +#### Parameters + +##### e + +`MouseEvent` + +#### Returns + +`void` + +### handleViewportMouseDown + +> **handleViewportMouseDown**: (`e`) => `void` + +#### Parameters + +##### e + +`MouseEvent` + +#### Returns + +`void` + +### handleViewportMouseMove + +> **handleViewportMouseMove**: (`e`) => `void` + +#### Parameters + +##### e + +`MouseEvent` + +#### Returns + +`void` + +### handleViewportMouseUp + +> **handleViewportMouseUp**: (`e`) => `void` + +#### Parameters + +##### e + +`MouseEvent` + +#### Returns + +`void` diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useDashboardShortcuts/README.md b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useDashboardShortcuts/README.md new file mode 100644 index 00000000..b2881962 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useDashboardShortcuts/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Dashboard/hooks/interaction/useDashboardShortcuts + +# app/pages/Dashboard/hooks/interaction/useDashboardShortcuts + +## Functions + +- [useDashboardShortcuts](functions/useDashboardShortcuts.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useDashboardShortcuts/functions/useDashboardShortcuts.md b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useDashboardShortcuts/functions/useDashboardShortcuts.md new file mode 100644 index 00000000..6236b973 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useDashboardShortcuts/functions/useDashboardShortcuts.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Dashboard/hooks/interaction/useDashboardShortcuts](../README.md) / useDashboardShortcuts + +# Function: useDashboardShortcuts() + +> **useDashboardShortcuts**(`__namedParameters`): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/hooks/interaction/useDashboardShortcuts.ts:18](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/hooks/interaction/useDashboardShortcuts.ts#L18) + +## Parameters + +### \_\_namedParameters + +`UseDashboardShortcutsArgs` + +## Returns + +`void` diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useOverlayScrollPassthrough/README.md b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useOverlayScrollPassthrough/README.md new file mode 100644 index 00000000..94530564 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useOverlayScrollPassthrough/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Dashboard/hooks/interaction/useOverlayScrollPassthrough + +# app/pages/Dashboard/hooks/interaction/useOverlayScrollPassthrough + +## Functions + +- [useOverlayScrollPassthrough](functions/useOverlayScrollPassthrough.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useOverlayScrollPassthrough/functions/useOverlayScrollPassthrough.md b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useOverlayScrollPassthrough/functions/useOverlayScrollPassthrough.md new file mode 100644 index 00000000..2a9a054a --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useOverlayScrollPassthrough/functions/useOverlayScrollPassthrough.md @@ -0,0 +1,23 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Dashboard/hooks/interaction/useOverlayScrollPassthrough](../README.md) / useOverlayScrollPassthrough + +# Function: useOverlayScrollPassthrough() + +> **useOverlayScrollPassthrough**(`active`): `RefObject`\<`HTMLDivElement`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/hooks/interaction/useOverlayScrollPassthrough.ts:4](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/hooks/interaction/useOverlayScrollPassthrough.ts#L4) + +Forwards wheel events through an overlay to the content beneath while keeping overlay click/drag; passes pinch-zoom. + +## Parameters + +### active + +`boolean` + +## Returns + +`RefObject`\<`HTMLDivElement`\> diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useWebviewSuspend/README.md b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useWebviewSuspend/README.md new file mode 100644 index 00000000..4eab2e43 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useWebviewSuspend/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Dashboard/hooks/interaction/useWebviewSuspend + +# app/pages/Dashboard/hooks/interaction/useWebviewSuspend + +## Functions + +- [useWebviewSuspend](functions/useWebviewSuspend.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useWebviewSuspend/functions/useWebviewSuspend.md b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useWebviewSuspend/functions/useWebviewSuspend.md new file mode 100644 index 00000000..16bf3269 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/interaction/useWebviewSuspend/functions/useWebviewSuspend.md @@ -0,0 +1,42 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Dashboard/hooks/interaction/useWebviewSuspend](../README.md) / useWebviewSuspend + +# Function: useWebviewSuspend() + +> **useWebviewSuspend**(`browserCards`, `panX`, `panY`, `zoom`, `viewportRef`): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/hooks/interaction/useWebviewSuspend.ts:66](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/hooks/interaction/useWebviewSuspend.ts#L66) + +Swaps off-screen, agent-idle webviews for static snapshots (freeing their +renderer processes) and wakes them when panned back into view. Agent-driven +cards are never touched; commands to a suspended card wake it via +browserCommandHandler's awaitWebview. + +## Parameters + +### browserCards + +`Record`\<`string`, [`BrowserCardPosition`](../../../../../../../shared/state/dashboardLayoutSlice/interfaces/BrowserCardPosition.md)\> + +### panX + +`number` + +### panY + +`number` + +### zoom + +`number` + +### viewportRef + +`RefObject`\<`HTMLDivElement`\> + +## Returns + +`void` diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/lifecycle/useAgentSpawn/README.md b/frontend/.typedoc/app/pages/Dashboard/hooks/lifecycle/useAgentSpawn/README.md new file mode 100644 index 00000000..65b28190 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/lifecycle/useAgentSpawn/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Dashboard/hooks/lifecycle/useAgentSpawn + +# app/pages/Dashboard/hooks/lifecycle/useAgentSpawn + +## Functions + +- [useAgentSpawn](functions/useAgentSpawn.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/lifecycle/useAgentSpawn/functions/useAgentSpawn.md b/frontend/.typedoc/app/pages/Dashboard/hooks/lifecycle/useAgentSpawn/functions/useAgentSpawn.md new file mode 100644 index 00000000..ac322d4b --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/lifecycle/useAgentSpawn/functions/useAgentSpawn.md @@ -0,0 +1,97 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Dashboard/hooks/lifecycle/useAgentSpawn](../README.md) / useAgentSpawn + +# Function: useAgentSpawn() + +> **useAgentSpawn**(`__namedParameters`): `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/hooks/lifecycle/useAgentSpawn.ts:43](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/hooks/lifecycle/useAgentSpawn.ts#L43) + +## Parameters + +### \_\_namedParameters + +`UseAgentSpawnArgs` + +## Returns + +`object` + +### handleBranchFromCard + +> **handleBranchFromCard**: (`sourceSessionId`, `newSessionId`) => `void` + +#### Parameters + +##### sourceSessionId + +`string` + +##### newSessionId + +`string` + +#### Returns + +`void` + +### handleNewAgent + +> **handleNewAgent**: () => `void` + +#### Returns + +`void` + +### handleToolbarCancel + +> **handleToolbarCancel**: () => `void` + +#### Returns + +`void` + +### handleToolbarSend + +> **handleToolbarSend**: (`prompt`, `mode`, `model`, `images?`, `contextPaths?`, `forcedTools?`, `attachedSkills?`, `selectedBrowserIds?`) => `void` + +#### Parameters + +##### prompt + +`string` + +##### mode + +`string` + +##### model + +`string` + +##### images? + +`object`[] + +##### contextPaths? + +[`ContextPath`](../../../../../../components/editor/DirectoryBrowser/interfaces/ContextPath.md)[] + +##### forcedTools? + +`string`[] + +##### attachedSkills? + +`object`[] + +##### selectedBrowserIds? + +`string`[] + +#### Returns + +`void` diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/lifecycle/useDashboardCardActions/README.md b/frontend/.typedoc/app/pages/Dashboard/hooks/lifecycle/useDashboardCardActions/README.md new file mode 100644 index 00000000..717c5dfb --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/lifecycle/useDashboardCardActions/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Dashboard/hooks/lifecycle/useDashboardCardActions + +# app/pages/Dashboard/hooks/lifecycle/useDashboardCardActions + +## Functions + +- [useDashboardCardActions](functions/useDashboardCardActions.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/lifecycle/useDashboardCardActions/functions/useDashboardCardActions.md b/frontend/.typedoc/app/pages/Dashboard/hooks/lifecycle/useDashboardCardActions/functions/useDashboardCardActions.md new file mode 100644 index 00000000..faf9c861 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/lifecycle/useDashboardCardActions/functions/useDashboardCardActions.md @@ -0,0 +1,81 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Dashboard/hooks/lifecycle/useDashboardCardActions](../README.md) / useDashboardCardActions + +# Function: useDashboardCardActions() + +> **useDashboardCardActions**(`__namedParameters`): `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/hooks/lifecycle/useDashboardCardActions.ts:30](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/hooks/lifecycle/useDashboardCardActions.ts#L30) + +## Parameters + +### \_\_namedParameters + +`UseDashboardCardActionsArgs` + +## Returns + +`object` + +### handleAddBrowser + +> **handleAddBrowser**: () => `void` + +#### Returns + +`void` + +### handleAddNote + +> **handleAddNote**: () => `void` + +#### Returns + +`void` + +### handleAddView + +> **handleAddView**: (`outputId`) => `void` + +#### Parameters + +##### outputId + +`string` + +#### Returns + +`void` + +### handleFitToView + +> **handleFitToView**: () => `void` + +#### Returns + +`void` + +### handleHistoryResume + +> **handleHistoryResume**: (`sessionId`) => `void` + +#### Parameters + +##### sessionId + +`string` + +#### Returns + +`void` + +### handleTidy + +> **handleTidy**: () => `void` + +#### Returns + +`void` diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/lifecycle/useDashboardLifecycle/README.md b/frontend/.typedoc/app/pages/Dashboard/hooks/lifecycle/useDashboardLifecycle/README.md new file mode 100644 index 00000000..86356f58 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/lifecycle/useDashboardLifecycle/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Dashboard/hooks/lifecycle/useDashboardLifecycle + +# app/pages/Dashboard/hooks/lifecycle/useDashboardLifecycle + +## Functions + +- [useDashboardLifecycle](functions/useDashboardLifecycle.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/lifecycle/useDashboardLifecycle/functions/useDashboardLifecycle.md b/frontend/.typedoc/app/pages/Dashboard/hooks/lifecycle/useDashboardLifecycle/functions/useDashboardLifecycle.md new file mode 100644 index 00000000..08504bd2 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/lifecycle/useDashboardLifecycle/functions/useDashboardLifecycle.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Dashboard/hooks/lifecycle/useDashboardLifecycle](../README.md) / useDashboardLifecycle + +# Function: useDashboardLifecycle() + +> **useDashboardLifecycle**(`__namedParameters`): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/hooks/lifecycle/useDashboardLifecycle.ts:43](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/hooks/lifecycle/useDashboardLifecycle.ts#L43) + +## Parameters + +### \_\_namedParameters + +`UseDashboardLifecycleArgs` + +## Returns + +`void` diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/lifecycle/useSiblingRestack/README.md b/frontend/.typedoc/app/pages/Dashboard/hooks/lifecycle/useSiblingRestack/README.md new file mode 100644 index 00000000..6d7e1ded --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/lifecycle/useSiblingRestack/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Dashboard/hooks/lifecycle/useSiblingRestack + +# app/pages/Dashboard/hooks/lifecycle/useSiblingRestack + +## Functions + +- [useSiblingRestack](functions/useSiblingRestack.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/lifecycle/useSiblingRestack/functions/useSiblingRestack.md b/frontend/.typedoc/app/pages/Dashboard/hooks/lifecycle/useSiblingRestack/functions/useSiblingRestack.md new file mode 100644 index 00000000..ef4dbe19 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/lifecycle/useSiblingRestack/functions/useSiblingRestack.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Dashboard/hooks/lifecycle/useSiblingRestack](../README.md) / useSiblingRestack + +# Function: useSiblingRestack() + +> **useSiblingRestack**(`__namedParameters`): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/hooks/lifecycle/useSiblingRestack.ts:26](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/hooks/lifecycle/useSiblingRestack.ts#L26) + +## Parameters + +### \_\_namedParameters + +`UseSiblingRestackArgs` + +## Returns + +`void` diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/lifecycle/useSubAgentLifecycle/README.md b/frontend/.typedoc/app/pages/Dashboard/hooks/lifecycle/useSubAgentLifecycle/README.md new file mode 100644 index 00000000..bab051a7 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/lifecycle/useSubAgentLifecycle/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Dashboard/hooks/lifecycle/useSubAgentLifecycle + +# app/pages/Dashboard/hooks/lifecycle/useSubAgentLifecycle + +## Functions + +- [useSubAgentLifecycle](functions/useSubAgentLifecycle.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/lifecycle/useSubAgentLifecycle/functions/useSubAgentLifecycle.md b/frontend/.typedoc/app/pages/Dashboard/hooks/lifecycle/useSubAgentLifecycle/functions/useSubAgentLifecycle.md new file mode 100644 index 00000000..862f5bee --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/lifecycle/useSubAgentLifecycle/functions/useSubAgentLifecycle.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Dashboard/hooks/lifecycle/useSubAgentLifecycle](../README.md) / useSubAgentLifecycle + +# Function: useSubAgentLifecycle() + +> **useSubAgentLifecycle**(`__namedParameters`): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/hooks/lifecycle/useSubAgentLifecycle.ts:25](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/hooks/lifecycle/useSubAgentLifecycle.ts#L25) + +## Parameters + +### \_\_namedParameters + +`UseSubAgentLifecycleArgs` + +## Returns + +`void` diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardController/README.md b/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardController/README.md new file mode 100644 index 00000000..5cc3a051 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardController/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Dashboard/hooks/state/useDashboardController + +# app/pages/Dashboard/hooks/state/useDashboardController + +## Functions + +- [useDashboardController](functions/useDashboardController.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardController/functions/useDashboardController.md b/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardController/functions/useDashboardController.md new file mode 100644 index 00000000..34170a07 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardController/functions/useDashboardController.md @@ -0,0 +1,841 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Dashboard/hooks/state/useDashboardController](../README.md) / useDashboardController + +# Function: useDashboardController() + +> **useDashboardController**(`dashboardId`, `isActive`): `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/hooks/state/useDashboardController.ts:27](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/hooks/state/useDashboardController.ts#L27) + +## Parameters + +### dashboardId + +`string` + +### isActive + +`boolean` + +## Returns + +`object` + +### autoFocusSessionId + +> **autoFocusSessionId**: `string` \| `null` + +### browserCards + +> **browserCards**: `Record`\<`string`, [`BrowserCardPosition`](../../../../../../../shared/state/dashboardLayoutSlice/interfaces/BrowserCardPosition.md)\> + +### c + +> **c**: [`ClaudeTokens`](../../../../../../../shared/styles/claudeTokens/interfaces/ClaudeTokens.md) + +### canvas + +> **canvas**: `object` + +#### canvas.actions + +> **actions**: `object` + +#### canvas.actions.animateTo + +> **animateTo**: (`target`, `duration`) => `void` + +##### Parameters + +###### target + +`CanvasState` + +###### duration? + +`number` = `320` + +##### Returns + +`void` + +#### canvas.actions.cancelAnimation + +> **cancelAnimation**: () => `void` + +##### Returns + +`void` + +#### canvas.actions.fitToCards + +> **fitToCards**: (`cardRects`, `maxZoom?`, `animate?`, `minZoom?`) => `void` + +##### Parameters + +###### cardRects + +`object`[] + +###### maxZoom? + +`number` + +###### animate? + +`boolean` + +###### minZoom? + +`number` + +##### Returns + +`void` + +#### canvas.actions.fitToView + +> **fitToView**: () => `void` + +##### Returns + +`void` + +#### canvas.actions.resetZoom + +> **resetZoom**: () => `void` + +##### Returns + +`void` + +#### canvas.actions.setState + +> **setState**: `Dispatch`\<`SetStateAction`\<`CanvasState`\>\> + +#### canvas.actions.zoomIn + +> **zoomIn**: () => `void` + +##### Returns + +`void` + +#### canvas.actions.zoomOut + +> **zoomOut**: () => `void` + +##### Returns + +`void` + +#### canvas.cmdHeld + +> **cmdHeld**: `boolean` + +#### canvas.contentRef + +> **contentRef**: `RefObject`\<`HTMLDivElement`\> + +#### canvas.handlers + +> **handlers**: `object` + +#### canvas.handlers.onMouseDown + +> **onMouseDown**: (`e`) => `void` = `handleMouseDown` + +##### Parameters + +###### e + +`MouseEvent` + +##### Returns + +`void` + +#### canvas.handlers.onMouseMove + +> **onMouseMove**: (`e`) => `void` = `handleMouseMove` + +##### Parameters + +###### e + +`MouseEvent` + +##### Returns + +`void` + +#### canvas.handlers.onMouseUp + +> **onMouseUp**: () => `void` = `handleMouseUp` + +##### Returns + +`void` + +#### canvas.isPanning + +> **isPanning**: `boolean` + +#### canvas.panX + +> `readonly` **panX**: `number` + +#### canvas.panY + +> `readonly` **panY**: `number` + +#### canvas.spaceHeld + +> **spaceHeld**: `boolean` + +#### canvas.viewportRef + +> **viewportRef**: `RefObject`\<`HTMLDivElement`\> + +#### canvas.zoom + +> `readonly` **zoom**: `number` + +### cards + +> **cards**: `Record`\<`string`, [`CardPosition`](../../../../../../../shared/state/dashboardLayoutSlice/interfaces/CardPosition.md)\> + +### dashboardId + +> **dashboardId**: `string` + +### dashboardName + +> **dashboardName**: `string` \| `undefined` + +### expandedSessionIds + +> **expandedSessionIds**: `string`[] + +### focusedCardId + +> **focusedCardId**: `string` \| `null` + +### getCanvasState + +> **getCanvasState**: () => `object` + +#### Returns + +`object` + +##### panX + +> **panX**: `number` = `canvas.panX` + +##### panY + +> **panY**: `number` = `canvas.panY` + +##### zoom + +> **zoom**: `number` = `canvas.zoom` + +### glowingAgentCards + +> **glowingAgentCards**: `Record`\<`string`, \{ `fading`: `boolean`; `label?`: `string`; `sourceId`: `string`; `sourceYRatio?`: `number`; \}\> + +### highlightedCardId + +> **highlightedCardId**: `string` \| `null` + +### measuredHeightsRef + +> **measuredHeightsRef**: `MutableRefObject`\<`Record`\<`string`, `number`\>\> + +### multiDragDelta + +> **multiDragDelta**: \{ `dx`: `number`; `dy`: `number`; \} \| `null` + +### neighborDirections + +> **neighborDirections**: `object` + +#### neighborDirections.down + +> **down**: `boolean` = `false` + +#### neighborDirections.left + +> **left**: `boolean` = `false` + +#### neighborDirections.right + +> **right**: `boolean` = `false` + +#### neighborDirections.up + +> **up**: `boolean` = `false` + +### newAgentBounce + +> **newAgentBounce**: `boolean` + +### notes + +> **notes**: `Record`\<`string`, [`NotePosition`](../../../../../../../shared/state/dashboardLayoutSlice/interfaces/NotePosition.md)\> + +### onAddBrowser + +> **onAddBrowser**: () => `void` = `handleAddBrowser` + +#### Returns + +`void` + +### onAddNote + +> **onAddNote**: () => `void` = `handleAddNote` + +#### Returns + +`void` + +### onAddView + +> **onAddView**: (`outputId`) => `void` = `handleAddView` + +#### Parameters + +##### outputId + +`string` + +#### Returns + +`void` + +### onBranch + +> **onBranch**: (`sourceSessionId`, `newSessionId`) => `void` = `handleBranchFromCard` + +#### Parameters + +##### sourceSessionId + +`string` + +##### newSessionId + +`string` + +#### Returns + +`void` + +### onBringToFront + +> **onBringToFront**: (`id`, `type`) => `void` = `handleBringToFront` + +#### Parameters + +##### id + +`string` + +##### type + +[`CardType`](../../../../../../../shared/state/dashboardLayoutSlice/type-aliases/CardType.md) + +#### Returns + +`void` + +### onCardDoubleClick + +> **onCardDoubleClick**: (`id`, `type`) => `void` = `handleCardDoubleClick` + +#### Parameters + +##### id + +`string` + +##### type + +[`CardType`](../../../../../../../shared/state/dashboardLayoutSlice/type-aliases/CardType.md) + +#### Returns + +`void` + +### onCardSelect + +> **onCardSelect**: (`id`, `type`, `shiftKey`) => `void` = `handleCardSelect` + +#### Parameters + +##### id + +`string` + +##### type + +[`CardType`](../../../../../../../shared/state/dashboardLayoutSlice/type-aliases/CardType.md) + +##### shiftKey + +`boolean` + +#### Returns + +`void` + +### onDragEnd + +> **onDragEnd**: (`dx`, `dy`, `didDrag`) => `void` = `handleCardDragEnd` + +#### Parameters + +##### dx + +`number` + +##### dy + +`number` + +##### didDrag + +`boolean` + +#### Returns + +`void` + +### onDragMove + +> **onDragMove**: (`dx`, `dy`, `mouseX?`, `mouseY?`) => `void` = `handleCardDragMove` + +#### Parameters + +##### dx + +`number` + +##### dy + +`number` + +##### mouseX? + +`number` + +##### mouseY? + +`number` + +#### Returns + +`void` + +### onDragStart + +> **onDragStart**: (`id`, `_type`) => `void` = `handleCardDragStart` + +#### Parameters + +##### id + +`string` + +##### \_type + +[`CardType`](../../../../../../../shared/state/dashboardLayoutSlice/type-aliases/CardType.md) + +#### Returns + +`void` + +### onFitToView + +> **onFitToView**: () => `void` = `handleFitToView` + +#### Returns + +`void` + +### onHighlightCard + +> **onHighlightCard**: (`cardId`) => `void` = `handleHighlightCard` + +#### Parameters + +##### cardId + +`string` + +#### Returns + +`void` + +### onHistoryResume + +> **onHistoryResume**: (`sessionId`) => `void` = `handleHistoryResume` + +#### Parameters + +##### sessionId + +`string` + +#### Returns + +`void` + +### onMeasuredHeight + +> **onMeasuredHeight**: (`sessionId`, `height`) => `void` = `handleMeasuredHeight` + +#### Parameters + +##### sessionId + +`string` + +##### height + +`number` + +#### Returns + +`void` + +### onNewAgent + +> **onNewAgent**: () => `void` = `handleNewAgent` + +#### Returns + +`void` + +### onNewAgentBounceEnd + +> **onNewAgentBounceEnd**: () => `void` + +#### Returns + +`void` + +### onSearchPaletteClose + +> **onSearchPaletteClose**: () => `void` + +#### Returns + +`void` + +### onStarter + +> **onStarter**: (`prompt`, `mode?`) => `void` = `handleStarter` + +#### Parameters + +##### prompt + +`string` + +##### mode? + +`string` + +#### Returns + +`void` + +### onTidy + +> **onTidy**: () => `void` = `handleTidy` + +#### Returns + +`void` + +### onToolbarCancel + +> **onToolbarCancel**: () => `void` = `handleToolbarCancel` + +#### Returns + +`void` + +### onToolbarSend + +> **onToolbarSend**: (`prompt`, `mode`, `model`, `images?`, `contextPaths?`, `forcedTools?`, `attachedSkills?`, `selectedBrowserIds?`) => `void` = `handleToolbarSend` + +#### Parameters + +##### prompt + +`string` + +##### mode + +`string` + +##### model + +`string` + +##### images? + +`object`[] + +##### contextPaths? + +[`ContextPath`](../../../../../../components/editor/DirectoryBrowser/interfaces/ContextPath.md)[] + +##### forcedTools? + +`string`[] + +##### attachedSkills? + +`object`[] + +##### selectedBrowserIds? + +`string`[] + +#### Returns + +`void` + +### onViewportDoubleClick + +> **onViewportDoubleClick**: (`e`) => `void` = `handleViewportDoubleClick` + +#### Parameters + +##### e + +`MouseEvent` + +#### Returns + +`void` + +### onViewportMouseDown + +> **onViewportMouseDown**: (`e`) => `void` = `handleViewportMouseDown` + +#### Parameters + +##### e + +`MouseEvent` + +#### Returns + +`void` + +### onViewportMouseMove + +> **onViewportMouseMove**: (`e`) => `void` = `handleViewportMouseMove` + +#### Parameters + +##### e + +`MouseEvent` + +#### Returns + +`void` + +### onViewportMouseUp + +> **onViewportMouseUp**: (`e`) => `void` = `handleViewportMouseUp` + +#### Parameters + +##### e + +`MouseEvent` + +#### Returns + +`void` + +### outputs + +> **outputs**: `Record`\<`string`, [`Output`](../../../../../../../shared/state/outputsSlice/interfaces/Output.md)\> + +### pendingFocusNoteId + +> **pendingFocusNoteId**: `string` \| `null` + +### revealSpawnedRef + +> **revealSpawnedRef**: `MutableRefObject`\<`Set`\<`string`\>\> + +### searchPaletteOpen + +> **searchPaletteOpen**: `boolean` + +### selection + +> **selection**: `object` + +#### selection.deselectAll + +> **deselectAll**: () => `void` + +##### Returns + +`void` + +#### selection.handleCanvasMouseDown + +> **handleCanvasMouseDown**: (`e`) => `void` + +##### Parameters + +###### e + +`MouseEvent` + +##### Returns + +`void` + +#### selection.handleCanvasMouseMove + +> **handleCanvasMouseMove**: (`e`) => `void` + +##### Parameters + +###### e + +`MouseEvent` + +##### Returns + +`void` + +#### selection.handleCanvasMouseUp + +> **handleCanvasMouseUp**: (`e`) => `void` + +##### Parameters + +###### e + +`MouseEvent` + +##### Returns + +`void` + +#### selection.isSelected + +> **isSelected**: (`id`) => `boolean` + +##### Parameters + +###### id + +`string` + +##### Returns + +`boolean` + +#### selection.marquee + +> **marquee**: [`MarqueeRect`](../../useDashboardSelection/interfaces/MarqueeRect.md) \| `null` + +#### selection.selectAll + +> **selectAll**: () => `void` + +##### Returns + +`void` + +#### selection.selectCard + +> **selectCard**: (`id`, `type`, `shiftKey`) => `void` + +##### Parameters + +###### id + +`string` + +###### type + +[`CardType`](../../../../../../../shared/state/dashboardLayoutSlice/type-aliases/CardType.md) + +###### shiftKey + +`boolean` + +##### Returns + +`void` + +#### selection.selectedArray + +> **selectedArray**: () => [`SelectedCard`](../../useDashboardSelection/interfaces/SelectedCard.md)[] + +##### Returns + +[`SelectedCard`](../../useDashboardSelection/interfaces/SelectedCard.md)[] + +#### selection.selectedIds + +> **selectedIds**: `Map`\<`string`, [`CardType`](../../../../../../../shared/state/dashboardLayoutSlice/type-aliases/CardType.md)\> + +### sessionList + +> **sessionList**: [`AgentSession`](../../../../../../../shared/state/agentsSlice/interfaces/AgentSession.md)[] + +### sessions + +> **sessions**: `Record`\<`string`, [`AgentSession`](../../../../../../../shared/state/agentsSlice/interfaces/AgentSession.md)\> + +### shakeDirection + +> **shakeDirection**: `Direction` \| `null` + +### spawnOriginsRef + +> **spawnOriginsRef**: `MutableRefObject`\<`Record`\<`string`, `SpawnOrigin`\>\> + +### tethers + +> **tethers**: [`Tether`](../../../../geometry/dashboardTethers/interfaces/Tether.md)[] + +### toolbarOpen + +> **toolbarOpen**: `boolean` + +### toolbarPrefill + +> **toolbarPrefill**: `string` \| `undefined` + +### toolbarPrefillMode + +> **toolbarPrefillMode**: `string` \| `undefined` + +### toolbarRef + +> **toolbarRef**: `RefObject`\<`HTMLDivElement`\> + +### viewCards + +> **viewCards**: `Record`\<`string`, [`ViewCardPosition`](../../../../../../../shared/state/dashboardLayoutSlice/interfaces/ViewCardPosition.md)\> diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardSelection/README.md b/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardSelection/README.md new file mode 100644 index 00000000..f5c1228f --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardSelection/README.md @@ -0,0 +1,22 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Dashboard/hooks/state/useDashboardSelection + +# app/pages/Dashboard/hooks/state/useDashboardSelection + +## Interfaces + +- [MarqueeRect](interfaces/MarqueeRect.md) +- [SelectedCard](interfaces/SelectedCard.md) + +## Functions + +- [useDashboardSelection](functions/useDashboardSelection.md) + +## References + +### CardType + +Re-exports [CardType](../../../../../../shared/state/dashboardLayoutSlice/type-aliases/CardType.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardSelection/functions/useDashboardSelection.md b/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardSelection/functions/useDashboardSelection.md new file mode 100644 index 00000000..084ffe81 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardSelection/functions/useDashboardSelection.md @@ -0,0 +1,147 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Dashboard/hooks/state/useDashboardSelection](../README.md) / useDashboardSelection + +# Function: useDashboardSelection() + +> **useDashboardSelection**(`canvas`, `cards`, `viewCards`, `browserCards?`, `notes?`): `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/hooks/state/useDashboardSelection.ts:40](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/hooks/state/useDashboardSelection.ts#L40) + +## Parameters + +### canvas + +`ScreenToCanvas` + +### cards + +`Record`\<`string`, [`CardPosition`](../../../../../../../shared/state/dashboardLayoutSlice/interfaces/CardPosition.md)\> + +### viewCards + +`Record`\<`string`, [`ViewCardPosition`](../../../../../../../shared/state/dashboardLayoutSlice/interfaces/ViewCardPosition.md)\> + +### browserCards? + +`Record`\<`string`, [`BrowserCardPosition`](../../../../../../../shared/state/dashboardLayoutSlice/interfaces/BrowserCardPosition.md)\> = `{}` + +### notes? + +`Record`\<`string`, [`NotePosition`](../../../../../../../shared/state/dashboardLayoutSlice/interfaces/NotePosition.md)\> = `{}` + +## Returns + +`object` + +### deselectAll + +> **deselectAll**: () => `void` + +#### Returns + +`void` + +### handleCanvasMouseDown + +> **handleCanvasMouseDown**: (`e`) => `void` + +#### Parameters + +##### e + +`MouseEvent` + +#### Returns + +`void` + +### handleCanvasMouseMove + +> **handleCanvasMouseMove**: (`e`) => `void` + +#### Parameters + +##### e + +`MouseEvent` + +#### Returns + +`void` + +### handleCanvasMouseUp + +> **handleCanvasMouseUp**: (`e`) => `void` + +#### Parameters + +##### e + +`MouseEvent` + +#### Returns + +`void` + +### isSelected + +> **isSelected**: (`id`) => `boolean` + +#### Parameters + +##### id + +`string` + +#### Returns + +`boolean` + +### marquee + +> **marquee**: [`MarqueeRect`](../interfaces/MarqueeRect.md) \| `null` + +### selectAll + +> **selectAll**: () => `void` + +#### Returns + +`void` + +### selectCard + +> **selectCard**: (`id`, `type`, `shiftKey`) => `void` + +#### Parameters + +##### id + +`string` + +##### type + +[`CardType`](../../../../../../../shared/state/dashboardLayoutSlice/type-aliases/CardType.md) + +##### shiftKey + +`boolean` + +#### Returns + +`void` + +### selectedArray + +> **selectedArray**: () => [`SelectedCard`](../interfaces/SelectedCard.md)[] + +#### Returns + +[`SelectedCard`](../interfaces/SelectedCard.md)[] + +### selectedIds + +> **selectedIds**: `Map`\<`string`, [`CardType`](../../../../../../../shared/state/dashboardLayoutSlice/type-aliases/CardType.md)\> diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardSelection/interfaces/MarqueeRect.md b/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardSelection/interfaces/MarqueeRect.md new file mode 100644 index 00000000..727a430e --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardSelection/interfaces/MarqueeRect.md @@ -0,0 +1,41 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Dashboard/hooks/state/useDashboardSelection](../README.md) / MarqueeRect + +# Interface: MarqueeRect + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/hooks/state/useDashboardSelection.ts:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/hooks/state/useDashboardSelection.ts#L12) + +## Properties + +### height + +> **height**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/hooks/state/useDashboardSelection.ts:16](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/hooks/state/useDashboardSelection.ts#L16) + +*** + +### width + +> **width**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/hooks/state/useDashboardSelection.ts:15](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/hooks/state/useDashboardSelection.ts#L15) + +*** + +### x + +> **x**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/hooks/state/useDashboardSelection.ts:13](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/hooks/state/useDashboardSelection.ts#L13) + +*** + +### y + +> **y**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/hooks/state/useDashboardSelection.ts:14](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/hooks/state/useDashboardSelection.ts#L14) diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardSelection/interfaces/SelectedCard.md b/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardSelection/interfaces/SelectedCard.md new file mode 100644 index 00000000..2d116e13 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardSelection/interfaces/SelectedCard.md @@ -0,0 +1,25 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Dashboard/hooks/state/useDashboardSelection](../README.md) / SelectedCard + +# Interface: SelectedCard + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/hooks/state/useDashboardSelection.ts:7](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/hooks/state/useDashboardSelection.ts#L7) + +## Properties + +### id + +> **id**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/hooks/state/useDashboardSelection.ts:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/hooks/state/useDashboardSelection.ts#L8) + +*** + +### type + +> **type**: [`CardType`](../../../../../../../shared/state/dashboardLayoutSlice/type-aliases/CardType.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/hooks/state/useDashboardSelection.ts:9](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/hooks/state/useDashboardSelection.ts#L9) diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardSelectors/README.md b/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardSelectors/README.md new file mode 100644 index 00000000..2b356f07 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardSelectors/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Dashboard/hooks/state/useDashboardSelectors + +# app/pages/Dashboard/hooks/state/useDashboardSelectors + +## Functions + +- [useDashboardSelectors](functions/useDashboardSelectors.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardSelectors/functions/useDashboardSelectors.md b/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardSelectors/functions/useDashboardSelectors.md new file mode 100644 index 00000000..4bd7a74e --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardSelectors/functions/useDashboardSelectors.md @@ -0,0 +1,97 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Dashboard/hooks/state/useDashboardSelectors](../README.md) / useDashboardSelectors + +# Function: useDashboardSelectors() + +> **useDashboardSelectors**(`dashboardId`): `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/hooks/state/useDashboardSelectors.ts:6](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/hooks/state/useDashboardSelectors.ts#L6) + +## Parameters + +### dashboardId + +`string` + +## Returns + +`object` + +### autoRevealSubAgents + +> **autoRevealSubAgents**: `boolean` + +### browserCards + +> **browserCards**: `Record`\<`string`, [`BrowserCardPosition`](../../../../../../../shared/state/dashboardLayoutSlice/interfaces/BrowserCardPosition.md)\> + +### browserHomepage + +> **browserHomepage**: `string` + +### cards + +> **cards**: `Record`\<`string`, [`CardPosition`](../../../../../../../shared/state/dashboardLayoutSlice/interfaces/CardPosition.md)\> + +### dashboardName + +> **dashboardName**: `string` \| `undefined` + +### expandedSessionIds + +> **expandedSessionIds**: `string`[] + +### expandNewChats + +> **expandNewChats**: `boolean` + +### glowingAgentCards + +> **glowingAgentCards**: `Record`\<`string`, \{ `fading`: `boolean`; `label?`: `string`; `sourceId`: `string`; `sourceYRatio?`: `number`; \}\> + +### glowingBrowserCards + +> **glowingBrowserCards**: `Record`\<`string`, \{ `fading`: `boolean`; `label?`: `string`; `sourceId`: `string`; \}\> + +### layoutInitialized + +> **layoutInitialized**: `boolean` + +### newAgentShortcut + +> **newAgentShortcut**: `string` + +### notes + +> **notes**: `Record`\<`string`, [`NotePosition`](../../../../../../../shared/state/dashboardLayoutSlice/interfaces/NotePosition.md)\> + +### outputs + +> **outputs**: `Record`\<`string`, [`Output`](../../../../../../../shared/state/outputsSlice/interfaces/Output.md)\> + +### outputsLoaded + +> **outputsLoaded**: `boolean` + +### pendingFocusNoteId + +> **pendingFocusNoteId**: `string` \| `null` + +### persistedExpandedSessionIds + +> **persistedExpandedSessionIds**: `string`[] + +### sessions + +> **sessions**: `Record`\<`string`, [`AgentSession`](../../../../../../../shared/state/agentsSlice/interfaces/AgentSession.md)\> + +### viewCards + +> **viewCards**: `Record`\<`string`, [`ViewCardPosition`](../../../../../../../shared/state/dashboardLayoutSlice/interfaces/ViewCardPosition.md)\> + +### zoomSensitivity + +> **zoomSensitivity**: `number` diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardThumbnail/README.md b/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardThumbnail/README.md new file mode 100644 index 00000000..6d0e5021 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardThumbnail/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Dashboard/hooks/state/useDashboardThumbnail + +# app/pages/Dashboard/hooks/state/useDashboardThumbnail + +## Functions + +- [useDashboardThumbnail](functions/useDashboardThumbnail.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardThumbnail/functions/useDashboardThumbnail.md b/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardThumbnail/functions/useDashboardThumbnail.md new file mode 100644 index 00000000..58e69a2b --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardThumbnail/functions/useDashboardThumbnail.md @@ -0,0 +1,29 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Dashboard/hooks/state/useDashboardThumbnail](../README.md) / useDashboardThumbnail + +# Function: useDashboardThumbnail() + +> **useDashboardThumbnail**(`__namedParameters`): `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/hooks/state/useDashboardThumbnail.ts:36](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/hooks/state/useDashboardThumbnail.ts#L36) + +## Parameters + +### \_\_namedParameters + +`UseDashboardThumbnailArgs` + +## Returns + +`object` + +### captureNow + +> **captureNow**: () => `void` + +#### Returns + +`void` diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardUiState/README.md b/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardUiState/README.md new file mode 100644 index 00000000..92af224c --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardUiState/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Dashboard/hooks/state/useDashboardUiState + +# app/pages/Dashboard/hooks/state/useDashboardUiState + +## Functions + +- [useDashboardUiState](functions/useDashboardUiState.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardUiState/functions/useDashboardUiState.md b/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardUiState/functions/useDashboardUiState.md new file mode 100644 index 00000000..505959bd --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/state/useDashboardUiState/functions/useDashboardUiState.md @@ -0,0 +1,171 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Dashboard/hooks/state/useDashboardUiState](../README.md) / useDashboardUiState + +# Function: useDashboardUiState() + +> **useDashboardUiState**(`selection`, `cards`): `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/hooks/state/useDashboardUiState.ts:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/hooks/state/useDashboardUiState.ts#L12) + +## Parameters + +### selection + +#### deselectAll + +() => `void` + +#### handleCanvasMouseDown + +(`e`) => `void` + +#### handleCanvasMouseMove + +(`e`) => `void` + +#### handleCanvasMouseUp + +(`e`) => `void` + +#### isSelected + +(`id`) => `boolean` + +#### marquee + +[`MarqueeRect`](../../useDashboardSelection/interfaces/MarqueeRect.md) \| `null` + +#### selectAll + +() => `void` + +#### selectCard + +(`id`, `type`, `shiftKey`) => `void` + +#### selectedArray + +() => [`SelectedCard`](../../useDashboardSelection/interfaces/SelectedCard.md)[] + +#### selectedIds + +`Map`\<`string`, [`CardType`](../../../../../../../shared/state/dashboardLayoutSlice/type-aliases/CardType.md)\> + +### cards + +`Record`\<`string`, [`CardPosition`](../../../../../../../shared/state/dashboardLayoutSlice/interfaces/CardPosition.md)\> + +## Returns + +`object` + +### autoFocusSessionId + +> **autoFocusSessionId**: `string` \| `null` + +### focusedCardId + +> **focusedCardId**: `string` \| `null` + +### handleHighlightCard + +> **handleHighlightCard**: (`cardId`) => `void` + +#### Parameters + +##### cardId + +`string` + +#### Returns + +`void` + +### handleMeasuredHeight + +> **handleMeasuredHeight**: (`sessionId`, `height`) => `void` + +#### Parameters + +##### sessionId + +`string` + +##### height + +`number` + +#### Returns + +`void` + +### hasFittedRef + +> **hasFittedRef**: `MutableRefObject`\<`boolean`\> + +### highlightedCardId + +> **highlightedCardId**: `string` \| `null` + +### measuredHeightsRef + +> **measuredHeightsRef**: `MutableRefObject`\<`Record`\<`string`, `number`\>\> + +### measuredHeightsTick + +> **measuredHeightsTick**: `number` + +### newAgentBounce + +> **newAgentBounce**: `boolean` + +### restoredExpandedRef + +> **restoredExpandedRef**: `MutableRefObject`\<`boolean`\> + +### revealSpawnedRef + +> **revealSpawnedRef**: `MutableRefObject`\<`Set`\<`string`\>\> + +### searchPaletteOpen + +> **searchPaletteOpen**: `boolean` + +### setAutoFocusSessionId + +> **setAutoFocusSessionId**: `Dispatch`\<`SetStateAction`\<`string` \| `null`\>\> + +### setFocusedCardId + +> **setFocusedCardId**: `Dispatch`\<`SetStateAction`\<`string` \| `null`\>\> + +### setNewAgentBounce + +> **setNewAgentBounce**: `Dispatch`\<`SetStateAction`\<`boolean`\>\> + +### setPendingSelectSessionId + +> **setPendingSelectSessionId**: `Dispatch`\<`SetStateAction`\<`string` \| `null`\>\> + +### setSearchPaletteOpen + +> **setSearchPaletteOpen**: `Dispatch`\<`SetStateAction`\<`boolean`\>\> + +### setToolbarOpen + +> **setToolbarOpen**: `Dispatch`\<`SetStateAction`\<`boolean`\>\> + +### spawnOriginsRef + +> **spawnOriginsRef**: `MutableRefObject`\<`Record`\<`string`, `SpawnOrigin`\>\> + +### toolbarOpen + +> **toolbarOpen**: `boolean` + +### toolbarRef + +> **toolbarRef**: `RefObject`\<`HTMLDivElement`\> diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/state/useLayoutSave/README.md b/frontend/.typedoc/app/pages/Dashboard/hooks/state/useLayoutSave/README.md new file mode 100644 index 00000000..bbe61c8a --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/state/useLayoutSave/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Dashboard/hooks/state/useLayoutSave + +# app/pages/Dashboard/hooks/state/useLayoutSave + +## Functions + +- [useLayoutSave](functions/useLayoutSave.md) diff --git a/frontend/.typedoc/app/pages/Dashboard/hooks/state/useLayoutSave/functions/useLayoutSave.md b/frontend/.typedoc/app/pages/Dashboard/hooks/state/useLayoutSave/functions/useLayoutSave.md new file mode 100644 index 00000000..fcb2ac78 --- /dev/null +++ b/frontend/.typedoc/app/pages/Dashboard/hooks/state/useLayoutSave/functions/useLayoutSave.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Dashboard/hooks/state/useLayoutSave](../README.md) / useLayoutSave + +# Function: useLayoutSave() + +> **useLayoutSave**(`__namedParameters`): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Dashboard/hooks/state/useLayoutSave.ts:27](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Dashboard/hooks/state/useLayoutSave.ts#L27) + +## Parameters + +### \_\_namedParameters + +`UseLayoutSaveArgs` + +## Returns + +`void` diff --git a/frontend/.typedoc/app/pages/DashboardSelection/DashboardSelection/README.md b/frontend/.typedoc/app/pages/DashboardSelection/DashboardSelection/README.md new file mode 100644 index 00000000..bcfe79d0 --- /dev/null +++ b/frontend/.typedoc/app/pages/DashboardSelection/DashboardSelection/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/pages/DashboardSelection/DashboardSelection + +# app/pages/DashboardSelection/DashboardSelection + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/DashboardSelection/DashboardSelection/variables/default.md b/frontend/.typedoc/app/pages/DashboardSelection/DashboardSelection/variables/default.md new file mode 100644 index 00000000..a86f8bed --- /dev/null +++ b/frontend/.typedoc/app/pages/DashboardSelection/DashboardSelection/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/DashboardSelection/DashboardSelection](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/DashboardSelection/DashboardSelection.tsx:47](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/DashboardSelection/DashboardSelection.tsx#L47) diff --git a/frontend/.typedoc/app/pages/Modes/Modes/README.md b/frontend/.typedoc/app/pages/Modes/Modes/README.md new file mode 100644 index 00000000..da59c15b --- /dev/null +++ b/frontend/.typedoc/app/pages/Modes/Modes/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/pages/Modes/Modes + +# app/pages/Modes/Modes + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Modes/Modes/variables/default.md b/frontend/.typedoc/app/pages/Modes/Modes/variables/default.md new file mode 100644 index 00000000..112e9b8a --- /dev/null +++ b/frontend/.typedoc/app/pages/Modes/Modes/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/Modes/Modes](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Modes/Modes.tsx:107](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Modes/Modes.tsx#L107) diff --git a/frontend/.typedoc/app/pages/Settings/Settings/README.md b/frontend/.typedoc/app/pages/Settings/Settings/README.md new file mode 100644 index 00000000..f37e3268 --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/Settings/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/pages/Settings/Settings + +# app/pages/Settings/Settings + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Settings/Settings/variables/default.md b/frontend/.typedoc/app/pages/Settings/Settings/variables/default.md new file mode 100644 index 00000000..a47a9477 --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/Settings/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/Settings/Settings](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Settings/Settings.tsx:49](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Settings/Settings.tsx#L49) diff --git a/frontend/.typedoc/app/pages/Settings/sections/SettingsHeader/README.md b/frontend/.typedoc/app/pages/Settings/sections/SettingsHeader/README.md new file mode 100644 index 00000000..0994a4ae --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/SettingsHeader/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Settings/sections/SettingsHeader + +# app/pages/Settings/sections/SettingsHeader + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Settings/sections/SettingsHeader/variables/default.md b/frontend/.typedoc/app/pages/Settings/sections/SettingsHeader/variables/default.md new file mode 100644 index 00000000..26537101 --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/SettingsHeader/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Settings/sections/SettingsHeader](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<\{ `activeTab`: `string`; `onClose`: () => `void`; `onTabChange`: (`v`) => `void`; \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Settings/sections/SettingsHeader.tsx:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Settings/sections/SettingsHeader.tsx#L11) diff --git a/frontend/.typedoc/app/pages/Settings/sections/general/GeneralAdvanced/README.md b/frontend/.typedoc/app/pages/Settings/sections/general/GeneralAdvanced/README.md new file mode 100644 index 00000000..dc870533 --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/general/GeneralAdvanced/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Settings/sections/general/GeneralAdvanced + +# app/pages/Settings/sections/general/GeneralAdvanced + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Settings/sections/general/GeneralAdvanced/variables/default.md b/frontend/.typedoc/app/pages/Settings/sections/general/GeneralAdvanced/variables/default.md new file mode 100644 index 00000000..33e9086c --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/general/GeneralAdvanced/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Settings/sections/general/GeneralAdvanced](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<\{ `form`: [`AppSettings`](../../../../../../../shared/state/settingsSlice/interfaces/AppSettings.md); `setForm`: `React.Dispatch`\<`React.SetStateAction`\<[`AppSettings`](../../../../../../../shared/state/settingsSlice/interfaces/AppSettings.md)\>\>; `styles`: [`SettingsStyles`](../../../settingsStyles/type-aliases/SettingsStyles.md); \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Settings/sections/general/GeneralAdvanced.tsx:16](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Settings/sections/general/GeneralAdvanced.tsx#L16) diff --git a/frontend/.typedoc/app/pages/Settings/sections/general/GeneralAgentDefaults/README.md b/frontend/.typedoc/app/pages/Settings/sections/general/GeneralAgentDefaults/README.md new file mode 100644 index 00000000..306923c2 --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/general/GeneralAgentDefaults/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Settings/sections/general/GeneralAgentDefaults + +# app/pages/Settings/sections/general/GeneralAgentDefaults + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Settings/sections/general/GeneralAgentDefaults/variables/default.md b/frontend/.typedoc/app/pages/Settings/sections/general/GeneralAgentDefaults/variables/default.md new file mode 100644 index 00000000..8e8caac5 --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/general/GeneralAgentDefaults/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Settings/sections/general/GeneralAgentDefaults](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<\{ `form`: [`AppSettings`](../../../../../../../shared/state/settingsSlice/interfaces/AppSettings.md); `modelOptions`: \{ `flat`: `ModelOption` & `object`[]; `grouped`: `Record`\<`string`, `ModelOption`[]\>; \}; `modesList`: `object`[]; `openswarmGradient`: `string`; `providerColors`: `Record`\<`string`, `string`\>; `setBrowseOpen`: (`v`) => `void`; `setForm`: `React.Dispatch`\<`React.SetStateAction`\<[`AppSettings`](../../../../../../../shared/state/settingsSlice/interfaces/AppSettings.md)\>\>; `styles`: [`SettingsStyles`](../../../settingsStyles/type-aliases/SettingsStyles.md); \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Settings/sections/general/GeneralAgentDefaults.tsx:19](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Settings/sections/general/GeneralAgentDefaults.tsx#L19) diff --git a/frontend/.typedoc/app/pages/Settings/sections/general/GeneralInterface/README.md b/frontend/.typedoc/app/pages/Settings/sections/general/GeneralInterface/README.md new file mode 100644 index 00000000..1d931432 --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/general/GeneralInterface/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Settings/sections/general/GeneralInterface + +# app/pages/Settings/sections/general/GeneralInterface + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Settings/sections/general/GeneralInterface/variables/default.md b/frontend/.typedoc/app/pages/Settings/sections/general/GeneralInterface/variables/default.md new file mode 100644 index 00000000..38d2db3d --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/general/GeneralInterface/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Settings/sections/general/GeneralInterface](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<\{ `form`: [`AppSettings`](../../../../../../../shared/state/settingsSlice/interfaces/AppSettings.md); `setForm`: `React.Dispatch`\<`React.SetStateAction`\<[`AppSettings`](../../../../../../../shared/state/settingsSlice/interfaces/AppSettings.md)\>\>; `styles`: [`SettingsStyles`](../../../settingsStyles/type-aliases/SettingsStyles.md); \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Settings/sections/general/GeneralInterface.tsx:17](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Settings/sections/general/GeneralInterface.tsx#L17) diff --git a/frontend/.typedoc/app/pages/Settings/sections/general/GeneralTab/README.md b/frontend/.typedoc/app/pages/Settings/sections/general/GeneralTab/README.md new file mode 100644 index 00000000..a0c1f7e8 --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/general/GeneralTab/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Settings/sections/general/GeneralTab + +# app/pages/Settings/sections/general/GeneralTab + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Settings/sections/general/GeneralTab/variables/default.md b/frontend/.typedoc/app/pages/Settings/sections/general/GeneralTab/variables/default.md new file mode 100644 index 00000000..d6b5b42e --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/general/GeneralTab/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Settings/sections/general/GeneralTab](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<\{ `form`: [`AppSettings`](../../../../../../../shared/state/settingsSlice/interfaces/AppSettings.md); `modelOptions`: \{ `flat`: `ModelOption` & `object`[]; `grouped`: `Record`\<`string`, `ModelOption`[]\>; \}; `modesList`: `object`[]; `openswarmGradient`: `string`; `providerColors`: `Record`\<`string`, `string`\>; `setBrowseOpen`: (`v`) => `void`; `setForm`: `React.Dispatch`\<`React.SetStateAction`\<[`AppSettings`](../../../../../../../shared/state/settingsSlice/interfaces/AppSettings.md)\>\>; `styles`: [`SettingsStyles`](../../../settingsStyles/type-aliases/SettingsStyles.md); \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Settings/sections/general/GeneralTab.tsx:13](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Settings/sections/general/GeneralTab.tsx#L13) diff --git a/frontend/.typedoc/app/pages/Settings/sections/general/SoftwareUpdateRow/README.md b/frontend/.typedoc/app/pages/Settings/sections/general/SoftwareUpdateRow/README.md new file mode 100644 index 00000000..997c8c37 --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/general/SoftwareUpdateRow/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Settings/sections/general/SoftwareUpdateRow + +# app/pages/Settings/sections/general/SoftwareUpdateRow + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Settings/sections/general/SoftwareUpdateRow/variables/default.md b/frontend/.typedoc/app/pages/Settings/sections/general/SoftwareUpdateRow/variables/default.md new file mode 100644 index 00000000..ef7e2919 --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/general/SoftwareUpdateRow/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Settings/sections/general/SoftwareUpdateRow](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<\{ `styles`: [`SettingsStyles`](../../../settingsStyles/type-aliases/SettingsStyles.md); \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Settings/sections/general/SoftwareUpdateRow.tsx:17](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Settings/sections/general/SoftwareUpdateRow.tsx#L17) diff --git a/frontend/.typedoc/app/pages/Settings/sections/models/ApiKeyCard/README.md b/frontend/.typedoc/app/pages/Settings/sections/models/ApiKeyCard/README.md new file mode 100644 index 00000000..9084152f --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/models/ApiKeyCard/README.md @@ -0,0 +1,16 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Settings/sections/models/ApiKeyCard + +# app/pages/Settings/sections/models/ApiKeyCard + +## Interfaces + +- [ApiKeyConfig](interfaces/ApiKeyConfig.md) + +## Variables + +- [API\_KEY\_CARDS](variables/API_KEY_CARDS.md) +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Settings/sections/models/ApiKeyCard/interfaces/ApiKeyConfig.md b/frontend/.typedoc/app/pages/Settings/sections/models/ApiKeyCard/interfaces/ApiKeyConfig.md new file mode 100644 index 00000000..df0af4a4 --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/models/ApiKeyCard/interfaces/ApiKeyConfig.md @@ -0,0 +1,49 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Settings/sections/models/ApiKeyCard](../README.md) / ApiKeyConfig + +# Interface: ApiKeyConfig + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Settings/sections/models/ApiKeyCard.tsx:16](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Settings/sections/models/ApiKeyCard.tsx#L16) + +## Properties + +### desc + +> **desc**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Settings/sections/models/ApiKeyCard.tsx:19](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Settings/sections/models/ApiKeyCard.tsx#L19) + +*** + +### field + +> **field**: `ApiKeyField` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Settings/sections/models/ApiKeyCard.tsx:17](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Settings/sections/models/ApiKeyCard.tsx#L17) + +*** + +### href + +> **href**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Settings/sections/models/ApiKeyCard.tsx:21](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Settings/sections/models/ApiKeyCard.tsx#L21) + +*** + +### label + +> **label**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Settings/sections/models/ApiKeyCard.tsx:18](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Settings/sections/models/ApiKeyCard.tsx#L18) + +*** + +### placeholder + +> **placeholder**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Settings/sections/models/ApiKeyCard.tsx:20](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Settings/sections/models/ApiKeyCard.tsx#L20) diff --git a/frontend/.typedoc/app/pages/Settings/sections/models/ApiKeyCard/variables/API_KEY_CARDS.md b/frontend/.typedoc/app/pages/Settings/sections/models/ApiKeyCard/variables/API_KEY_CARDS.md new file mode 100644 index 00000000..0488a35c --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/models/ApiKeyCard/variables/API_KEY_CARDS.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Settings/sections/models/ApiKeyCard](../README.md) / API\_KEY\_CARDS + +# Variable: API\_KEY\_CARDS + +> `const` **API\_KEY\_CARDS**: [`ApiKeyConfig`](../interfaces/ApiKeyConfig.md)[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Settings/sections/models/ApiKeyCard.tsx:24](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Settings/sections/models/ApiKeyCard.tsx#L24) diff --git a/frontend/.typedoc/app/pages/Settings/sections/models/ApiKeyCard/variables/default.md b/frontend/.typedoc/app/pages/Settings/sections/models/ApiKeyCard/variables/default.md new file mode 100644 index 00000000..607c3446 --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/models/ApiKeyCard/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Settings/sections/models/ApiKeyCard](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<\{ `config`: [`ApiKeyConfig`](../interfaces/ApiKeyConfig.md); `form`: [`AppSettings`](../../../../../../../shared/state/settingsSlice/interfaces/AppSettings.md); `setForm`: `React.Dispatch`\<`React.SetStateAction`\<[`AppSettings`](../../../../../../../shared/state/settingsSlice/interfaces/AppSettings.md)\>\>; `setShowApiKey`: (`v`) => `void`; `showApiKey`: `boolean`; `styles`: [`SettingsStyles`](../../../settingsStyles/type-aliases/SettingsStyles.md); \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Settings/sections/models/ApiKeyCard.tsx:31](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Settings/sections/models/ApiKeyCard.tsx#L31) diff --git a/frontend/.typedoc/app/pages/Settings/sections/models/CustomProvidersEditor/README.md b/frontend/.typedoc/app/pages/Settings/sections/models/CustomProvidersEditor/README.md new file mode 100644 index 00000000..306b99fb --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/models/CustomProvidersEditor/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Settings/sections/models/CustomProvidersEditor + +# app/pages/Settings/sections/models/CustomProvidersEditor + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Settings/sections/models/CustomProvidersEditor/variables/default.md b/frontend/.typedoc/app/pages/Settings/sections/models/CustomProvidersEditor/variables/default.md new file mode 100644 index 00000000..974653d3 --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/models/CustomProvidersEditor/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Settings/sections/models/CustomProvidersEditor](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<\{ `form`: [`AppSettings`](../../../../../../../shared/state/settingsSlice/interfaces/AppSettings.md); `setForm`: `React.Dispatch`\<`React.SetStateAction`\<[`AppSettings`](../../../../../../../shared/state/settingsSlice/interfaces/AppSettings.md)\>\>; `setShowApiKey`: (`v`) => `void`; `showApiKey`: `boolean`; `styles`: [`SettingsStyles`](../../../settingsStyles/type-aliases/SettingsStyles.md); \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Settings/sections/models/CustomProvidersEditor.tsx:15](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Settings/sections/models/CustomProvidersEditor.tsx#L15) diff --git a/frontend/.typedoc/app/pages/Settings/sections/models/ModelsTab/README.md b/frontend/.typedoc/app/pages/Settings/sections/models/ModelsTab/README.md new file mode 100644 index 00000000..ba303dd5 --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/models/ModelsTab/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Settings/sections/models/ModelsTab + +# app/pages/Settings/sections/models/ModelsTab + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Settings/sections/models/ModelsTab/variables/default.md b/frontend/.typedoc/app/pages/Settings/sections/models/ModelsTab/variables/default.md new file mode 100644 index 00000000..14ad44a5 --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/models/ModelsTab/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Settings/sections/models/ModelsTab](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<\{ `form`: [`AppSettings`](../../../../../../../shared/state/settingsSlice/interfaces/AppSettings.md); `setForm`: `React.Dispatch`\<`React.SetStateAction`\<[`AppSettings`](../../../../../../../shared/state/settingsSlice/interfaces/AppSettings.md)\>\>; `setShowApiKey`: (`v`) => `void`; `showApiKey`: `boolean`; `styles`: [`SettingsStyles`](../../../settingsStyles/type-aliases/SettingsStyles.md); \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Settings/sections/models/ModelsTab.tsx:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Settings/sections/models/ModelsTab.tsx#L12) diff --git a/frontend/.typedoc/app/pages/Settings/sections/settingsStyles/README.md b/frontend/.typedoc/app/pages/Settings/sections/settingsStyles/README.md new file mode 100644 index 00000000..73d3e978 --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/settingsStyles/README.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Settings/sections/settingsStyles + +# app/pages/Settings/sections/settingsStyles + +## Type Aliases + +- [SettingsStyles](type-aliases/SettingsStyles.md) + +## Functions + +- [makeSettingsStyles](functions/makeSettingsStyles.md) diff --git a/frontend/.typedoc/app/pages/Settings/sections/settingsStyles/functions/makeSettingsStyles.md b/frontend/.typedoc/app/pages/Settings/sections/settingsStyles/functions/makeSettingsStyles.md new file mode 100644 index 00000000..7c4acdfa --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/settingsStyles/functions/makeSettingsStyles.md @@ -0,0 +1,165 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Settings/sections/settingsStyles](../README.md) / makeSettingsStyles + +# Function: makeSettingsStyles() + +> **makeSettingsStyles**(`c`): `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Settings/sections/settingsStyles.ts:2](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Settings/sections/settingsStyles.ts#L2) + +## Parameters + +### c + +`any` + +## Returns + +`object` + +### descSx + +> **descSx**: `object` + +#### descSx.color + +> **color**: `any` = `c.text.tertiary` + +#### descSx.fontSize + +> **fontSize**: `string` = `'0.75rem'` + +#### descSx.lineHeight + +> **lineHeight**: `number` = `1.4` + +### fieldSx + +> **fieldSx**: `object` + +#### fieldSx.& .MuiOutlinedInput-root + +> **& .MuiOutlinedInput-root**: `object` + +#### fieldSx.& .MuiOutlinedInput-root.fontSize + +> **fontSize**: `string` = `'0.85rem'` + +### inlineRowLastSx + +> **inlineRowLastSx**: `object` + +#### inlineRowLastSx.alignItems + +> **alignItems**: `string` = `'center'` + +#### inlineRowLastSx.display + +> **display**: `string` = `'flex'` + +#### inlineRowLastSx.justifyContent + +> **justifyContent**: `string` = `'space-between'` + +#### inlineRowLastSx.py + +> **py**: `number` = `2` + +### inlineRowSx + +> **inlineRowSx**: `object` + +#### inlineRowSx.alignItems + +> **alignItems**: `string` = `'center'` + +#### inlineRowSx.borderBottom + +> **borderBottom**: `string` + +#### inlineRowSx.display + +> **display**: `string` = `'flex'` + +#### inlineRowSx.justifyContent + +> **justifyContent**: `string` = `'space-between'` + +#### inlineRowSx.py + +> **py**: `number` = `2` + +### labelSx + +> **labelSx**: `object` + +#### labelSx.color + +> **color**: `any` = `c.text.primary` + +#### labelSx.fontSize + +> **fontSize**: `string` = `'0.875rem'` + +#### labelSx.fontWeight + +> **fontWeight**: `number` = `500` + +#### labelSx.lineHeight + +> **lineHeight**: `number` = `1.4` + +### rowLastSx + +> **rowLastSx**: `object` + +#### rowLastSx.py + +> **py**: `number` = `2` + +### rowSx + +> **rowSx**: `object` + +#### rowSx.borderBottom + +> **borderBottom**: `string` + +#### rowSx.py + +> **py**: `number` = `2` + +### sectionSx + +> **sectionSx**: `object` + +#### sectionSx.color + +> **color**: `any` = `c.text.tertiary` + +#### sectionSx.fontSize + +> **fontSize**: `string` = `'0.7rem'` + +#### sectionSx.fontWeight + +> **fontWeight**: `number` = `600` + +#### sectionSx.letterSpacing + +> **letterSpacing**: `string` = `'0.06em'` + +#### sectionSx.mb + +> **mb**: `number` = `0.5` + +#### sectionSx.mt + +> **mt**: `number` = `0.5` + +#### sectionSx.textTransform + +> **textTransform**: `"uppercase"` diff --git a/frontend/.typedoc/app/pages/Settings/sections/settingsStyles/type-aliases/SettingsStyles.md b/frontend/.typedoc/app/pages/Settings/sections/settingsStyles/type-aliases/SettingsStyles.md new file mode 100644 index 00000000..ad2420bb --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/settingsStyles/type-aliases/SettingsStyles.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Settings/sections/settingsStyles](../README.md) / SettingsStyles + +# Type Alias: SettingsStyles + +> **SettingsStyles** = `ReturnType`\<*typeof* [`makeSettingsStyles`](../functions/makeSettingsStyles.md)\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Settings/sections/settingsStyles.ts:58](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Settings/sections/settingsStyles.ts#L58) diff --git a/frontend/.typedoc/app/pages/Settings/sections/subscription/AccountCard/README.md b/frontend/.typedoc/app/pages/Settings/sections/subscription/AccountCard/README.md new file mode 100644 index 00000000..1667f4c5 --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/subscription/AccountCard/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Settings/sections/subscription/AccountCard + +# app/pages/Settings/sections/subscription/AccountCard + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Settings/sections/subscription/AccountCard/variables/default.md b/frontend/.typedoc/app/pages/Settings/sections/subscription/AccountCard/variables/default.md new file mode 100644 index 00000000..7a754886 --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/subscription/AccountCard/variables/default.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Settings/sections/subscription/AccountCard](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Settings/sections/subscription/AccountCard.tsx:13](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Settings/sections/subscription/AccountCard.tsx#L13) + +Account card at top of General tab; three states: signed in, paid-but-unlinked, or not signed in. diff --git a/frontend/.typedoc/app/pages/Settings/sections/subscription/OpenSwarmProCard/README.md b/frontend/.typedoc/app/pages/Settings/sections/subscription/OpenSwarmProCard/README.md new file mode 100644 index 00000000..0822f84c --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/subscription/OpenSwarmProCard/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Settings/sections/subscription/OpenSwarmProCard + +# app/pages/Settings/sections/subscription/OpenSwarmProCard + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Settings/sections/subscription/OpenSwarmProCard/variables/default.md b/frontend/.typedoc/app/pages/Settings/sections/subscription/OpenSwarmProCard/variables/default.md new file mode 100644 index 00000000..e92d4d7f --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/subscription/OpenSwarmProCard/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Settings/sections/subscription/OpenSwarmProCard](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Settings/sections/subscription/OpenSwarmProCard.tsx:37](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Settings/sections/subscription/OpenSwarmProCard.tsx#L37) diff --git a/frontend/.typedoc/app/pages/Settings/sections/subscription/SubscriptionCard/README.md b/frontend/.typedoc/app/pages/Settings/sections/subscription/SubscriptionCard/README.md new file mode 100644 index 00000000..a451b382 --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/subscription/SubscriptionCard/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Settings/sections/subscription/SubscriptionCard + +# app/pages/Settings/sections/subscription/SubscriptionCard + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Settings/sections/subscription/SubscriptionCard/variables/default.md b/frontend/.typedoc/app/pages/Settings/sections/subscription/SubscriptionCard/variables/default.md new file mode 100644 index 00000000..cc7e2b57 --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/subscription/SubscriptionCard/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Settings/sections/subscription/SubscriptionCard](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<\{ `connected`: `boolean`; `connecting`: `boolean`; `disconnecting?`: `boolean`; `onConnect`: () => `void`; `onDisconnect`: () => `void`; `provider`: [`SubscriptionProvider`](../../subscriptionProviders/type-aliases/SubscriptionProvider.md); `userCode?`: `string`; \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Settings/sections/subscription/SubscriptionCard.tsx:9](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Settings/sections/subscription/SubscriptionCard.tsx#L9) diff --git a/frontend/.typedoc/app/pages/Settings/sections/subscription/SubscriptionCards/README.md b/frontend/.typedoc/app/pages/Settings/sections/subscription/SubscriptionCards/README.md new file mode 100644 index 00000000..b30a8816 --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/subscription/SubscriptionCards/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Settings/sections/subscription/SubscriptionCards + +# app/pages/Settings/sections/subscription/SubscriptionCards + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Settings/sections/subscription/SubscriptionCards/variables/default.md b/frontend/.typedoc/app/pages/Settings/sections/subscription/SubscriptionCards/variables/default.md new file mode 100644 index 00000000..f666c9b5 --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/subscription/SubscriptionCards/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Settings/sections/subscription/SubscriptionCards](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Settings/sections/subscription/SubscriptionCards.tsx:18](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Settings/sections/subscription/SubscriptionCards.tsx#L18) diff --git a/frontend/.typedoc/app/pages/Settings/sections/subscription/subscriptionConnect/README.md b/frontend/.typedoc/app/pages/Settings/sections/subscription/subscriptionConnect/README.md new file mode 100644 index 00000000..76e71a7b --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/subscription/subscriptionConnect/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Settings/sections/subscription/subscriptionConnect + +# app/pages/Settings/sections/subscription/subscriptionConnect + +## Functions + +- [runConnectFlow](functions/runConnectFlow.md) diff --git a/frontend/.typedoc/app/pages/Settings/sections/subscription/subscriptionConnect/functions/runConnectFlow.md b/frontend/.typedoc/app/pages/Settings/sections/subscription/subscriptionConnect/functions/runConnectFlow.md new file mode 100644 index 00000000..b60fd5ef --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/subscription/subscriptionConnect/functions/runConnectFlow.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Settings/sections/subscription/subscriptionConnect](../README.md) / runConnectFlow + +# Function: runConnectFlow() + +> **runConnectFlow**(`ctx`): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Settings/sections/subscription/subscriptionConnect.ts:216](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Settings/sections/subscription/subscriptionConnect.ts#L216) + +## Parameters + +### ctx + +`ConnectCtx` + +## Returns + +`void` diff --git a/frontend/.typedoc/app/pages/Settings/sections/subscription/subscriptionProviders/README.md b/frontend/.typedoc/app/pages/Settings/sections/subscription/subscriptionProviders/README.md new file mode 100644 index 00000000..b7f6940f --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/subscription/subscriptionProviders/README.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Settings/sections/subscription/subscriptionProviders + +# app/pages/Settings/sections/subscription/subscriptionProviders + +## Type Aliases + +- [SubscriptionProvider](type-aliases/SubscriptionProvider.md) + +## Variables + +- [SUBSCRIPTION\_PROVIDERS](variables/SUBSCRIPTION_PROVIDERS.md) diff --git a/frontend/.typedoc/app/pages/Settings/sections/subscription/subscriptionProviders/type-aliases/SubscriptionProvider.md b/frontend/.typedoc/app/pages/Settings/sections/subscription/subscriptionProviders/type-aliases/SubscriptionProvider.md new file mode 100644 index 00000000..4324e3ff --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/subscription/subscriptionProviders/type-aliases/SubscriptionProvider.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Settings/sections/subscription/subscriptionProviders](../README.md) / SubscriptionProvider + +# Type Alias: SubscriptionProvider + +> **SubscriptionProvider** = *typeof* [`SUBSCRIPTION_PROVIDERS`](../variables/SUBSCRIPTION_PROVIDERS.md)\[`0`\] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Settings/sections/subscription/subscriptionProviders.ts:9](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Settings/sections/subscription/subscriptionProviders.ts#L9) diff --git a/frontend/.typedoc/app/pages/Settings/sections/subscription/subscriptionProviders/variables/SUBSCRIPTION_PROVIDERS.md b/frontend/.typedoc/app/pages/Settings/sections/subscription/subscriptionProviders/variables/SUBSCRIPTION_PROVIDERS.md new file mode 100644 index 00000000..f3df586b --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/subscription/subscriptionProviders/variables/SUBSCRIPTION_PROVIDERS.md @@ -0,0 +1,33 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Settings/sections/subscription/subscriptionProviders](../README.md) / SUBSCRIPTION\_PROVIDERS + +# Variable: SUBSCRIPTION\_PROVIDERS + +> `const` **SUBSCRIPTION\_PROVIDERS**: `object`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Settings/sections/subscription/subscriptionProviders.ts:2](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Settings/sections/subscription/subscriptionProviders.ts#L2) + +## Type Declaration + +### color + +> **color**: `string` = `'#E8927A'` + +### desc + +> **desc**: `string` = `'The latest Claude models'` + +### id + +> **id**: `string` = `'claude'` + +### name + +> **name**: `string` = `'Claude Pro / Max'` + +### preview + +> **preview**: `boolean` = `false` diff --git a/frontend/.typedoc/app/pages/Settings/sections/usage/PixelBar/README.md b/frontend/.typedoc/app/pages/Settings/sections/usage/PixelBar/README.md new file mode 100644 index 00000000..e4fa47d1 --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/usage/PixelBar/README.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Settings/sections/usage/PixelBar + +# app/pages/Settings/sections/usage/PixelBar + +## Variables + +- [PIXEL\_BLUE](variables/PIXEL_BLUE.md) +- [PIXEL\_SALMON](variables/PIXEL_SALMON.md) +- [PixelBarOuter](variables/PixelBarOuter.md) diff --git a/frontend/.typedoc/app/pages/Settings/sections/usage/PixelBar/variables/PIXEL_BLUE.md b/frontend/.typedoc/app/pages/Settings/sections/usage/PixelBar/variables/PIXEL_BLUE.md new file mode 100644 index 00000000..c12f5980 --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/usage/PixelBar/variables/PIXEL_BLUE.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Settings/sections/usage/PixelBar](../README.md) / PIXEL\_BLUE + +# Variable: PIXEL\_BLUE + +> `const` **PIXEL\_BLUE**: `string`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Settings/sections/usage/PixelBar.tsx:5](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Settings/sections/usage/PixelBar.tsx#L5) diff --git a/frontend/.typedoc/app/pages/Settings/sections/usage/PixelBar/variables/PIXEL_SALMON.md b/frontend/.typedoc/app/pages/Settings/sections/usage/PixelBar/variables/PIXEL_SALMON.md new file mode 100644 index 00000000..f06bf3f0 --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/usage/PixelBar/variables/PIXEL_SALMON.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Settings/sections/usage/PixelBar](../README.md) / PIXEL\_SALMON + +# Variable: PIXEL\_SALMON + +> `const` **PIXEL\_SALMON**: `string`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Settings/sections/usage/PixelBar.tsx:4](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Settings/sections/usage/PixelBar.tsx#L4) diff --git a/frontend/.typedoc/app/pages/Settings/sections/usage/PixelBar/variables/PixelBarOuter.md b/frontend/.typedoc/app/pages/Settings/sections/usage/PixelBar/variables/PixelBarOuter.md new file mode 100644 index 00000000..d02ddcf7 --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/usage/PixelBar/variables/PixelBarOuter.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Settings/sections/usage/PixelBar](../README.md) / PixelBarOuter + +# Variable: PixelBarOuter + +> `const` **PixelBarOuter**: `React.FC`\<\{ `max`: `number`; `palette?`: `string`[]; `tokens`: `any`; `value`: `number`; `width?`: `number`; \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Settings/sections/usage/PixelBar.tsx:7](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Settings/sections/usage/PixelBar.tsx#L7) diff --git a/frontend/.typedoc/app/pages/Settings/sections/usage/UsageStats/README.md b/frontend/.typedoc/app/pages/Settings/sections/usage/UsageStats/README.md new file mode 100644 index 00000000..4654c5f5 --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/usage/UsageStats/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / app/pages/Settings/sections/usage/UsageStats + +# app/pages/Settings/sections/usage/UsageStats + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Settings/sections/usage/UsageStats/variables/default.md b/frontend/.typedoc/app/pages/Settings/sections/usage/UsageStats/variables/default.md new file mode 100644 index 00000000..664653be --- /dev/null +++ b/frontend/.typedoc/app/pages/Settings/sections/usage/UsageStats/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../../README.md) + +*** + +[open-swarm](../../../../../../../README.md) / [app/pages/Settings/sections/usage/UsageStats](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Settings/sections/usage/UsageStats.tsx:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Settings/sections/usage/UsageStats.tsx#L8) diff --git a/frontend/.typedoc/app/pages/Skills/SkillBuilderChat/README.md b/frontend/.typedoc/app/pages/Skills/SkillBuilderChat/README.md new file mode 100644 index 00000000..1f731fcf --- /dev/null +++ b/frontend/.typedoc/app/pages/Skills/SkillBuilderChat/README.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/pages/Skills/SkillBuilderChat + +# app/pages/Skills/SkillBuilderChat + +## Interfaces + +- [SkillPreviewData](interfaces/SkillPreviewData.md) + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Skills/SkillBuilderChat/interfaces/SkillPreviewData.md b/frontend/.typedoc/app/pages/Skills/SkillBuilderChat/interfaces/SkillPreviewData.md new file mode 100644 index 00000000..36a14bbb --- /dev/null +++ b/frontend/.typedoc/app/pages/Skills/SkillBuilderChat/interfaces/SkillPreviewData.md @@ -0,0 +1,41 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/Skills/SkillBuilderChat](../README.md) / SkillPreviewData + +# Interface: SkillPreviewData + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Skills/SkillBuilderChat.tsx:24](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Skills/SkillBuilderChat.tsx#L24) + +## Properties + +### command + +> **command**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Skills/SkillBuilderChat.tsx:27](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Skills/SkillBuilderChat.tsx#L27) + +*** + +### content + +> **content**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Skills/SkillBuilderChat.tsx:28](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Skills/SkillBuilderChat.tsx#L28) + +*** + +### description + +> **description**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Skills/SkillBuilderChat.tsx:26](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Skills/SkillBuilderChat.tsx#L26) + +*** + +### name + +> **name**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Skills/SkillBuilderChat.tsx:25](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Skills/SkillBuilderChat.tsx#L25) diff --git a/frontend/.typedoc/app/pages/Skills/SkillBuilderChat/variables/default.md b/frontend/.typedoc/app/pages/Skills/SkillBuilderChat/variables/default.md new file mode 100644 index 00000000..e1bbd96a --- /dev/null +++ b/frontend/.typedoc/app/pages/Skills/SkillBuilderChat/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/Skills/SkillBuilderChat](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`SkillBuilderChatProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Skills/SkillBuilderChat.tsx:43](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Skills/SkillBuilderChat.tsx#L43) diff --git a/frontend/.typedoc/app/pages/Skills/Skills/README.md b/frontend/.typedoc/app/pages/Skills/Skills/README.md new file mode 100644 index 00000000..b95d5714 --- /dev/null +++ b/frontend/.typedoc/app/pages/Skills/Skills/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/pages/Skills/Skills + +# app/pages/Skills/Skills + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Skills/Skills/variables/default.md b/frontend/.typedoc/app/pages/Skills/Skills/variables/default.md new file mode 100644 index 00000000..fa85b330 --- /dev/null +++ b/frontend/.typedoc/app/pages/Skills/Skills/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/Skills/Skills](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Skills/Skills.tsx:73](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Skills/Skills.tsx#L73) diff --git a/frontend/.typedoc/app/pages/Tools/Tools/README.md b/frontend/.typedoc/app/pages/Tools/Tools/README.md new file mode 100644 index 00000000..b5b6c05d --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/Tools/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/pages/Tools/Tools + +# app/pages/Tools/Tools + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Tools/Tools/variables/default.md b/frontend/.typedoc/app/pages/Tools/Tools/variables/default.md new file mode 100644 index 00000000..e6e46c65 --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/Tools/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/Tools/Tools](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/Tools.tsx:43](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/Tools.tsx#L43) diff --git a/frontend/.typedoc/app/pages/Tools/cards/BrowserPermissionCard/README.md b/frontend/.typedoc/app/pages/Tools/cards/BrowserPermissionCard/README.md new file mode 100644 index 00000000..53656dc9 --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/cards/BrowserPermissionCard/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Tools/cards/BrowserPermissionCard + +# app/pages/Tools/cards/BrowserPermissionCard + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Tools/cards/BrowserPermissionCard/variables/default.md b/frontend/.typedoc/app/pages/Tools/cards/BrowserPermissionCard/variables/default.md new file mode 100644 index 00000000..a7b30190 --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/cards/BrowserPermissionCard/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Tools/cards/BrowserPermissionCard](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`BrowserPermissionCardProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/cards/BrowserPermissionCard.tsx:35](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/cards/BrowserPermissionCard.tsx#L35) diff --git a/frontend/.typedoc/app/pages/Tools/cards/CustomToolCard/README.md b/frontend/.typedoc/app/pages/Tools/cards/CustomToolCard/README.md new file mode 100644 index 00000000..4f15c350 --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/cards/CustomToolCard/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Tools/cards/CustomToolCard + +# app/pages/Tools/cards/CustomToolCard + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Tools/cards/CustomToolCard/variables/default.md b/frontend/.typedoc/app/pages/Tools/cards/CustomToolCard/variables/default.md new file mode 100644 index 00000000..e69fabad --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/cards/CustomToolCard/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Tools/cards/CustomToolCard](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`CustomToolCardProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/cards/CustomToolCard.tsx:58](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/cards/CustomToolCard.tsx#L58) diff --git a/frontend/.typedoc/app/pages/Tools/cards/CustomToolConnect/README.md b/frontend/.typedoc/app/pages/Tools/cards/CustomToolConnect/README.md new file mode 100644 index 00000000..2bda8410 --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/cards/CustomToolConnect/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Tools/cards/CustomToolConnect + +# app/pages/Tools/cards/CustomToolConnect + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Tools/cards/CustomToolConnect/variables/default.md b/frontend/.typedoc/app/pages/Tools/cards/CustomToolConnect/variables/default.md new file mode 100644 index 00000000..0b3731b0 --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/cards/CustomToolConnect/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Tools/cards/CustomToolConnect](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`CustomToolConnectProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/cards/CustomToolConnect.tsx:22](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/cards/CustomToolConnect.tsx#L22) diff --git a/frontend/.typedoc/app/pages/Tools/cards/CustomToolDevInfo/README.md b/frontend/.typedoc/app/pages/Tools/cards/CustomToolDevInfo/README.md new file mode 100644 index 00000000..7239b4f2 --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/cards/CustomToolDevInfo/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Tools/cards/CustomToolDevInfo + +# app/pages/Tools/cards/CustomToolDevInfo + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Tools/cards/CustomToolDevInfo/variables/default.md b/frontend/.typedoc/app/pages/Tools/cards/CustomToolDevInfo/variables/default.md new file mode 100644 index 00000000..85d8797f --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/cards/CustomToolDevInfo/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Tools/cards/CustomToolDevInfo](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<\{ `tool`: [`ToolDefinition`](../../../../../../shared/state/toolsSlice/interfaces/ToolDefinition.md); \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/cards/CustomToolDevInfo.tsx:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/cards/CustomToolDevInfo.tsx#L8) diff --git a/frontend/.typedoc/app/pages/Tools/cards/IntegrationGalleryCard/README.md b/frontend/.typedoc/app/pages/Tools/cards/IntegrationGalleryCard/README.md new file mode 100644 index 00000000..eb3a911d --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/cards/IntegrationGalleryCard/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Tools/cards/IntegrationGalleryCard + +# app/pages/Tools/cards/IntegrationGalleryCard + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Tools/cards/IntegrationGalleryCard/variables/default.md b/frontend/.typedoc/app/pages/Tools/cards/IntegrationGalleryCard/variables/default.md new file mode 100644 index 00000000..0a78d829 --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/cards/IntegrationGalleryCard/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Tools/cards/IntegrationGalleryCard](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`IntegrationGalleryCardProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/cards/IntegrationGalleryCard.tsx:19](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/cards/IntegrationGalleryCard.tsx#L19) diff --git a/frontend/.typedoc/app/pages/Tools/cards/ServiceGroup/README.md b/frontend/.typedoc/app/pages/Tools/cards/ServiceGroup/README.md new file mode 100644 index 00000000..fa0fffd9 --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/cards/ServiceGroup/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Tools/cards/ServiceGroup + +# app/pages/Tools/cards/ServiceGroup + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Tools/cards/ServiceGroup/variables/default.md b/frontend/.typedoc/app/pages/Tools/cards/ServiceGroup/variables/default.md new file mode 100644 index 00000000..967b57b9 --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/cards/ServiceGroup/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Tools/cards/ServiceGroup](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`ServiceGroupProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/cards/ServiceGroup.tsx:55](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/cards/ServiceGroup.tsx#L55) diff --git a/frontend/.typedoc/app/pages/Tools/cards/ToolSection/README.md b/frontend/.typedoc/app/pages/Tools/cards/ToolSection/README.md new file mode 100644 index 00000000..fa41f160 --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/cards/ToolSection/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Tools/cards/ToolSection + +# app/pages/Tools/cards/ToolSection + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Tools/cards/ToolSection/variables/default.md b/frontend/.typedoc/app/pages/Tools/cards/ToolSection/variables/default.md new file mode 100644 index 00000000..c9ed3eee --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/cards/ToolSection/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Tools/cards/ToolSection](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`ToolSectionProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/cards/ToolSection.tsx:46](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/cards/ToolSection.tsx#L46) diff --git a/frontend/.typedoc/app/pages/Tools/dialogs/McpConfigDialog/README.md b/frontend/.typedoc/app/pages/Tools/dialogs/McpConfigDialog/README.md new file mode 100644 index 00000000..2471c233 --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/dialogs/McpConfigDialog/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Tools/dialogs/McpConfigDialog + +# app/pages/Tools/dialogs/McpConfigDialog + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Tools/dialogs/McpConfigDialog/variables/default.md b/frontend/.typedoc/app/pages/Tools/dialogs/McpConfigDialog/variables/default.md new file mode 100644 index 00000000..975b5156 --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/dialogs/McpConfigDialog/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Tools/dialogs/McpConfigDialog](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`McpConfigDialogProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/dialogs/McpConfigDialog.tsx:35](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/dialogs/McpConfigDialog.tsx#L35) diff --git a/frontend/.typedoc/app/pages/Tools/dialogs/RegistryBrowserDialog/README.md b/frontend/.typedoc/app/pages/Tools/dialogs/RegistryBrowserDialog/README.md new file mode 100644 index 00000000..9b414fb6 --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/dialogs/RegistryBrowserDialog/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Tools/dialogs/RegistryBrowserDialog + +# app/pages/Tools/dialogs/RegistryBrowserDialog + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Tools/dialogs/RegistryBrowserDialog/variables/default.md b/frontend/.typedoc/app/pages/Tools/dialogs/RegistryBrowserDialog/variables/default.md new file mode 100644 index 00000000..cc29fb04 --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/dialogs/RegistryBrowserDialog/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Tools/dialogs/RegistryBrowserDialog](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`RegistryBrowserDialogProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/dialogs/RegistryBrowserDialog.tsx:54](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/dialogs/RegistryBrowserDialog.tsx#L54) diff --git a/frontend/.typedoc/app/pages/Tools/dialogs/RegistryServerRow/README.md b/frontend/.typedoc/app/pages/Tools/dialogs/RegistryServerRow/README.md new file mode 100644 index 00000000..d615bd14 --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/dialogs/RegistryServerRow/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Tools/dialogs/RegistryServerRow + +# app/pages/Tools/dialogs/RegistryServerRow + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Tools/dialogs/RegistryServerRow/variables/default.md b/frontend/.typedoc/app/pages/Tools/dialogs/RegistryServerRow/variables/default.md new file mode 100644 index 00000000..c97a4d3b --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/dialogs/RegistryServerRow/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Tools/dialogs/RegistryServerRow](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`RegistryServerRowProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/dialogs/RegistryServerRow.tsx:34](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/dialogs/RegistryServerRow.tsx#L34) diff --git a/frontend/.typedoc/app/pages/Tools/dialogs/ToolDialogs/README.md b/frontend/.typedoc/app/pages/Tools/dialogs/ToolDialogs/README.md new file mode 100644 index 00000000..e2c51469 --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/dialogs/ToolDialogs/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Tools/dialogs/ToolDialogs + +# app/pages/Tools/dialogs/ToolDialogs + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Tools/dialogs/ToolDialogs/variables/default.md b/frontend/.typedoc/app/pages/Tools/dialogs/ToolDialogs/variables/default.md new file mode 100644 index 00000000..32f6e56f --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/dialogs/ToolDialogs/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Tools/dialogs/ToolDialogs](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`ToolDialogsProps`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/dialogs/ToolDialogs.tsx:56](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/dialogs/ToolDialogs.tsx#L56) diff --git a/frontend/.typedoc/app/pages/Tools/hooks/useBuiltinSections/README.md b/frontend/.typedoc/app/pages/Tools/hooks/useBuiltinSections/README.md new file mode 100644 index 00000000..9abe0299 --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/hooks/useBuiltinSections/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Tools/hooks/useBuiltinSections + +# app/pages/Tools/hooks/useBuiltinSections + +## Functions + +- [useBuiltinSections](functions/useBuiltinSections.md) diff --git a/frontend/.typedoc/app/pages/Tools/hooks/useBuiltinSections/functions/useBuiltinSections.md b/frontend/.typedoc/app/pages/Tools/hooks/useBuiltinSections/functions/useBuiltinSections.md new file mode 100644 index 00000000..39278900 --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/hooks/useBuiltinSections/functions/useBuiltinSections.md @@ -0,0 +1,65 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Tools/hooks/useBuiltinSections](../README.md) / useBuiltinSections + +# Function: useBuiltinSections() + +> **useBuiltinSections**(`builtinTools`, `builtinPermissions`): `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/hooks/useBuiltinSections.ts:15](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/hooks/useBuiltinSections.ts#L15) + +## Parameters + +### builtinTools + +[`BuiltinTool`](../../../../../../shared/state/toolsSlice/interfaces/BuiltinTool.md)[] + +### builtinPermissions + +`Record`\<`string`, `string`\> + +## Returns + +`object` + +### browserActionTools + +> **browserActionTools**: [`BuiltinTool`](../../../../../../shared/state/toolsSlice/interfaces/BuiltinTool.md)[] + +### browserDelegationTools + +> **browserDelegationTools**: [`BuiltinTool`](../../../../../../shared/state/toolsSlice/interfaces/BuiltinTool.md)[] + +### browserSectionEnabled + +> **browserSectionEnabled**: `boolean` + +### browserTools + +> **browserTools**: [`BuiltinTool`](../../../../../../shared/state/toolsSlice/interfaces/BuiltinTool.md)[] + +### coreSectionEnabled + +> **coreSectionEnabled**: `boolean` + +### coreTools + +> **coreTools**: [`BuiltinTool`](../../../../../../shared/state/toolsSlice/interfaces/BuiltinTool.md)[] + +### deferredSectionEnabled + +> **deferredSectionEnabled**: `boolean` + +### deferredTools + +> **deferredTools**: [`BuiltinTool`](../../../../../../shared/state/toolsSlice/interfaces/BuiltinTool.md)[] + +### groupedCore + +> **groupedCore**: `Record`\<`string`, [`BuiltinTool`](../../../../../../shared/state/toolsSlice/interfaces/BuiltinTool.md)[]\> + +### groupedDeferred + +> **groupedDeferred**: `Record`\<`string`, [`BuiltinTool`](../../../../../../shared/state/toolsSlice/interfaces/BuiltinTool.md)[]\> diff --git a/frontend/.typedoc/app/pages/Tools/hooks/useRegistryBrowser/README.md b/frontend/.typedoc/app/pages/Tools/hooks/useRegistryBrowser/README.md new file mode 100644 index 00000000..ff14dba0 --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/hooks/useRegistryBrowser/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Tools/hooks/useRegistryBrowser + +# app/pages/Tools/hooks/useRegistryBrowser + +## Functions + +- [useRegistryBrowser](functions/useRegistryBrowser.md) diff --git a/frontend/.typedoc/app/pages/Tools/hooks/useRegistryBrowser/functions/useRegistryBrowser.md b/frontend/.typedoc/app/pages/Tools/hooks/useRegistryBrowser/functions/useRegistryBrowser.md new file mode 100644 index 00000000..68a2ce28 --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/hooks/useRegistryBrowser/functions/useRegistryBrowser.md @@ -0,0 +1,199 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Tools/hooks/useRegistryBrowser](../README.md) / useRegistryBrowser + +# Function: useRegistryBrowser() + +> **useRegistryBrowser**(`__namedParameters`): `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/hooks/useRegistryBrowser.ts:19](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/hooks/useRegistryBrowser.ts#L19) + +## Parameters + +### \_\_namedParameters + +`Deps` + +## Returns + +`object` + +### expandedServer + +> **expandedServer**: `string` \| `null` + +### handleEditInstall + +> **handleEditInstall**: (`srv`) => `void` + +#### Parameters + +##### srv + +[`McpServer`](../../../../../../shared/state/mcpRegistrySlice/interfaces/McpServer.md) + +#### Returns + +`void` + +### handleInstall + +> **handleInstall**: (`srv`) => `Promise`\<`void`\> + +#### Parameters + +##### srv + +[`McpServer`](../../../../../../shared/state/mcpRegistrySlice/interfaces/McpServer.md) + +#### Returns + +`Promise`\<`void`\> + +### handleLoadMore + +> **handleLoadMore**: () => `void` + +#### Returns + +`void` + +### handleMcpConfigSave + +> **handleMcpConfigSave**: () => `Promise`\<`void`\> + +#### Returns + +`Promise`\<`void`\> + +### handleRegSearch + +> **handleRegSearch**: (`q`, `sort?`, `source?`) => `void` + +#### Parameters + +##### q + +`string` + +##### sort? + +`"name"` \| `"stars"` + +##### source? + +`RegSource` + +#### Returns + +`void` + +### handleRegSort + +> **handleRegSort**: (`sort`) => `void` + +#### Parameters + +##### sort + +`"name"` \| `"stars"` + +#### Returns + +`void` + +### handleRegSourceFilter + +> **handleRegSourceFilter**: (`_`, `val`) => `void` + +#### Parameters + +##### \_ + +`MouseEvent`\<`HTMLElement`\> + +##### val + +`RegSource` + +#### Returns + +`void` + +### mcpAuthType + +> **mcpAuthType**: `"none"` \| `"env_vars"` + +### mcpConfigError + +> **mcpConfigError**: `string` + +### mcpConfigJson + +> **mcpConfigJson**: `string` + +### mcpConfigOpen + +> **mcpConfigOpen**: `boolean` + +### mcpConfigServer + +> **mcpConfigServer**: [`McpServer`](../../../../../../shared/state/mcpRegistrySlice/interfaces/McpServer.md) \| `null` + +### mcpCredentials + +> **mcpCredentials**: `Record`\<`string`, `string`\> + +### openRegistryBrowser + +> **openRegistryBrowser**: () => `void` + +#### Returns + +`void` + +### registryOpen + +> **registryOpen**: `boolean` + +### regQuery + +> **regQuery**: `string` + +### regSort + +> **regSort**: `"name"` \| `"stars"` + +### regSource + +> **regSource**: `RegSource` + +### setExpandedServer + +> **setExpandedServer**: `Dispatch`\<`SetStateAction`\<`string` \| `null`\>\> + +### setMcpAuthType + +> **setMcpAuthType**: `Dispatch`\<`SetStateAction`\<`"none"` \| `"env_vars"`\>\> + +### setMcpConfigError + +> **setMcpConfigError**: `Dispatch`\<`SetStateAction`\<`string`\>\> + +### setMcpConfigJson + +> **setMcpConfigJson**: `Dispatch`\<`SetStateAction`\<`string`\>\> + +### setMcpConfigOpen + +> **setMcpConfigOpen**: `Dispatch`\<`SetStateAction`\<`boolean`\>\> + +### setMcpCredentials + +> **setMcpCredentials**: `Dispatch`\<`SetStateAction`\<`Record`\<`string`, `string`\>\>\> + +### setRegistryOpen + +> **setRegistryOpen**: `Dispatch`\<`SetStateAction`\<`boolean`\>\> diff --git a/frontend/.typedoc/app/pages/Tools/hooks/useToolConnections/README.md b/frontend/.typedoc/app/pages/Tools/hooks/useToolConnections/README.md new file mode 100644 index 00000000..30eee35b --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/hooks/useToolConnections/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Tools/hooks/useToolConnections + +# app/pages/Tools/hooks/useToolConnections + +## Functions + +- [useToolConnections](functions/useToolConnections.md) diff --git a/frontend/.typedoc/app/pages/Tools/hooks/useToolConnections/functions/useToolConnections.md b/frontend/.typedoc/app/pages/Tools/hooks/useToolConnections/functions/useToolConnections.md new file mode 100644 index 00000000..61ab9805 --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/hooks/useToolConnections/functions/useToolConnections.md @@ -0,0 +1,159 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Tools/hooks/useToolConnections](../README.md) / useToolConnections + +# Function: useToolConnections() + +> **useToolConnections**(`__namedParameters`): `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/hooks/useToolConnections.ts:24](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/hooks/useToolConnections.ts#L24) + +## Parameters + +### \_\_namedParameters + +`Deps` + +## Returns + +`object` + +### credDialogIntegration + +> **credDialogIntegration**: [`Integration`](../../../integrations/interfaces/Integration.md) \| `null` + +### credDialogOpen + +> **credDialogOpen**: `boolean` + +### credDialogSaving + +> **credDialogSaving**: `boolean` + +### credDialogValues + +> **credDialogValues**: `Record`\<`string`, `string`\> + +### deviceCode + +> **deviceCode**: `string` + +### deviceCodeDialogOpen + +> **deviceCodeDialogOpen**: `boolean` + +### deviceCodeStatus + +> **deviceCodeStatus**: `"loading"` \| `"error"` \| `"awaiting"` \| `"connected"` + +### deviceCodeUrl + +> **deviceCodeUrl**: `string` + +### handleCredentialsSave + +> **handleCredentialsSave**: () => `Promise`\<`void`\> + +#### Returns + +`Promise`\<`void`\> + +### handleDeviceCodeConnect + +> **handleDeviceCodeConnect**: (`toolId`) => `Promise`\<`void`\> + +#### Parameters + +##### toolId + +`string` + +#### Returns + +`Promise`\<`void`\> + +### handleDisconnectIntegration + +> **handleDisconnectIntegration**: (`toolId`, `integration`) => `Promise`\<`void`\> + +#### Parameters + +##### toolId + +`string` + +##### integration + +[`Integration`](../../../integrations/interfaces/Integration.md) + +#### Returns + +`Promise`\<`void`\> + +### handleM365Disconnect + +> **handleM365Disconnect**: (`toolId`) => `Promise`\<`void`\> + +#### Parameters + +##### toolId + +`string` + +#### Returns + +`Promise`\<`void`\> + +### handleOAuthConnect + +> **handleOAuthConnect**: (`toolId`) => `Promise`\<`void`\> + +#### Parameters + +##### toolId + +`string` + +#### Returns + +`Promise`\<`void`\> + +### handleSlackAutoConnect + +> **handleSlackAutoConnect**: () => `Promise`\<`void`\> + +#### Returns + +`Promise`\<`void`\> + +### openCredentialsDialog + +> **openCredentialsDialog**: (`toolId`, `integration`) => `void` + +#### Parameters + +##### toolId + +`string` + +##### integration + +[`Integration`](../../../integrations/interfaces/Integration.md) + +#### Returns + +`void` + +### setCredDialogOpen + +> **setCredDialogOpen**: `Dispatch`\<`SetStateAction`\<`boolean`\>\> + +### setCredDialogValues + +> **setCredDialogValues**: `Dispatch`\<`SetStateAction`\<`Record`\<`string`, `string`\>\>\> + +### setDeviceCodeDialogOpen + +> **setDeviceCodeDialogOpen**: `Dispatch`\<`SetStateAction`\<`boolean`\>\> diff --git a/frontend/.typedoc/app/pages/Tools/hooks/useToolsActions/README.md b/frontend/.typedoc/app/pages/Tools/hooks/useToolsActions/README.md new file mode 100644 index 00000000..d2b7c2f4 --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/hooks/useToolsActions/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / app/pages/Tools/hooks/useToolsActions + +# app/pages/Tools/hooks/useToolsActions + +## Functions + +- [useToolsActions](functions/useToolsActions.md) diff --git a/frontend/.typedoc/app/pages/Tools/hooks/useToolsActions/functions/useToolsActions.md b/frontend/.typedoc/app/pages/Tools/hooks/useToolsActions/functions/useToolsActions.md new file mode 100644 index 00000000..a311337f --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/hooks/useToolsActions/functions/useToolsActions.md @@ -0,0 +1,599 @@ +[**open-swarm**](../../../../../../README.md) + +*** + +[open-swarm](../../../../../../README.md) / [app/pages/Tools/hooks/useToolsActions](../README.md) / useToolsActions + +# Function: useToolsActions() + +> **useToolsActions**(`__namedParameters`): `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/hooks/useToolsActions.ts:27](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/hooks/useToolsActions.ts#L27) + +## Parameters + +### \_\_namedParameters + +`ToolsActionsDeps` + +## Returns + +`object` + +### credDialogIntegration + +> **credDialogIntegration**: [`Integration`](../../../integrations/interfaces/Integration.md) \| `null` + +### credDialogOpen + +> **credDialogOpen**: `boolean` + +### credDialogSaving + +> **credDialogSaving**: `boolean` + +### credDialogValues + +> **credDialogValues**: `Record`\<`string`, `string`\> + +### deviceCode + +> **deviceCode**: `string` + +### deviceCodeDialogOpen + +> **deviceCodeDialogOpen**: `boolean` + +### deviceCodeStatus + +> **deviceCodeStatus**: `"loading"` \| `"error"` \| `"awaiting"` \| `"connected"` + +### deviceCodeUrl + +> **deviceCodeUrl**: `string` + +### dialogOpen + +> **dialogOpen**: `boolean` + +### discovering + +> **discovering**: `boolean` + +### editingId + +> **editingId**: `string` \| `null` + +### expandedSchema + +> **expandedSchema**: `string` \| `null` + +### expandedServer + +> **expandedServer**: `string` \| `null` + +### expandedServices + +> **expandedServices**: `Record`\<`string`, `boolean`\> + +### expandedToolId + +> **expandedToolId**: `string` \| `null` + +### form + +> **form**: [`ToolForm`](../../../toolsHelpers/interfaces/ToolForm.md) + +### handleBuiltinCategoryPermissionChange + +> **handleBuiltinCategoryPermissionChange**: (`toolNames`, `policy`) => `Promise`\<`void`\> + +#### Parameters + +##### toolNames + +`string`[] + +##### policy + +`string` + +#### Returns + +`Promise`\<`void`\> + +### handleBuiltinPermissionChange + +> **handleBuiltinPermissionChange**: (`toolName`, `policy`) => `Promise`\<`void`\> + +#### Parameters + +##### toolName + +`string` + +##### policy + +`string` + +#### Returns + +`Promise`\<`void`\> + +### handleBulkReadOnly + +> **handleBulkReadOnly**: (`toolId`) => `Promise`\<`void`\> + +#### Parameters + +##### toolId + +`string` + +#### Returns + +`Promise`\<`void`\> + +### handleCredentialsSave + +> **handleCredentialsSave**: () => `Promise`\<`void`\> + +#### Returns + +`Promise`\<`void`\> + +### handleDelete + +> **handleDelete**: (`id`) => `Promise`\<`void`\> + +#### Parameters + +##### id + +`string` + +#### Returns + +`Promise`\<`void`\> + +### handleDeviceCodeConnect + +> **handleDeviceCodeConnect**: (`toolId`) => `Promise`\<`void`\> + +#### Parameters + +##### toolId + +`string` + +#### Returns + +`Promise`\<`void`\> + +### handleDisconnectIntegration + +> **handleDisconnectIntegration**: (`toolId`, `integration`) => `Promise`\<`void`\> + +#### Parameters + +##### toolId + +`string` + +##### integration + +[`Integration`](../../../integrations/interfaces/Integration.md) + +#### Returns + +`Promise`\<`void`\> + +### handleDiscover + +> **handleDiscover**: (`toolId`) => `Promise`\<`void`\> + +#### Parameters + +##### toolId + +`string` + +#### Returns + +`Promise`\<`void`\> + +### handleEditInstall + +> **handleEditInstall**: (`srv`) => `void` + +#### Parameters + +##### srv + +[`McpServer`](../../../../../../shared/state/mcpRegistrySlice/interfaces/McpServer.md) + +#### Returns + +`void` + +### handleGroupPermissionChange + +> **handleGroupPermissionChange**: (`toolId`, `names`, `policy`) => `Promise`\<`void`\> + +#### Parameters + +##### toolId + +`string` + +##### names + +`string`[] + +##### policy + +`string` + +#### Returns + +`Promise`\<`void`\> + +### handleInstall + +> **handleInstall**: (`srv`) => `Promise`\<`void`\> + +#### Parameters + +##### srv + +[`McpServer`](../../../../../../shared/state/mcpRegistrySlice/interfaces/McpServer.md) + +#### Returns + +`Promise`\<`void`\> + +### handleIntegrationToggle + +> **handleIntegrationToggle**: (`integration`) => `Promise`\<`void`\> + +#### Parameters + +##### integration + +[`Integration`](../../../integrations/interfaces/Integration.md) + +#### Returns + +`Promise`\<`void`\> + +### handleLoadMore + +> **handleLoadMore**: () => `void` + +#### Returns + +`void` + +### handleM365Disconnect + +> **handleM365Disconnect**: (`toolId`) => `Promise`\<`void`\> + +#### Parameters + +##### toolId + +`string` + +#### Returns + +`Promise`\<`void`\> + +### handleMcpConfigSave + +> **handleMcpConfigSave**: () => `Promise`\<`void`\> + +#### Returns + +`Promise`\<`void`\> + +### handleOAuthConnect + +> **handleOAuthConnect**: (`toolId`) => `Promise`\<`void`\> + +#### Parameters + +##### toolId + +`string` + +#### Returns + +`Promise`\<`void`\> + +### handlePermissionChange + +> **handlePermissionChange**: (`toolId`, `toolName`, `policy`) => `Promise`\<`void`\> + +#### Parameters + +##### toolId + +`string` + +##### toolName + +`string` + +##### policy + +`string` + +#### Returns + +`Promise`\<`void`\> + +### handleRegSearch + +> **handleRegSearch**: (`q`, `sort?`, `source?`) => `void` + +#### Parameters + +##### q + +`string` + +##### sort? + +`"name"` \| `"stars"` + +##### source? + +`RegSource` + +#### Returns + +`void` + +### handleRegSort + +> **handleRegSort**: (`sort`) => `void` + +#### Parameters + +##### sort + +`"name"` \| `"stars"` + +#### Returns + +`void` + +### handleRegSourceFilter + +> **handleRegSourceFilter**: (`_`, `val`) => `void` + +#### Parameters + +##### \_ + +`MouseEvent`\<`HTMLElement`\> + +##### val + +`RegSource` + +#### Returns + +`void` + +### handleResetPermissions + +> **handleResetPermissions**: (`toolId`) => `Promise`\<`void`\> + +#### Parameters + +##### toolId + +`string` + +#### Returns + +`Promise`\<`void`\> + +### handleSave + +> **handleSave**: () => `Promise`\<`void`\> + +#### Returns + +`Promise`\<`void`\> + +### handleSectionEnabledChange + +> **handleSectionEnabledChange**: (`tools`, `enabled`) => `Promise`\<`void`\> + +#### Parameters + +##### tools + +[`BuiltinTool`](../../../../../../shared/state/toolsSlice/interfaces/BuiltinTool.md)[] + +##### enabled + +`boolean` + +#### Returns + +`Promise`\<`void`\> + +### handleSlackAutoConnect + +> **handleSlackAutoConnect**: () => `Promise`\<`void`\> + +#### Returns + +`Promise`\<`void`\> + +### integrationLoading + +> **integrationLoading**: `Record`\<`string`, `boolean`\> + +### mcpAuthType + +> **mcpAuthType**: `"none"` \| `"env_vars"` + +### mcpConfigError + +> **mcpConfigError**: `string` + +### mcpConfigJson + +> **mcpConfigJson**: `string` + +### mcpConfigOpen + +> **mcpConfigOpen**: `boolean` + +### mcpConfigServer + +> **mcpConfigServer**: [`McpServer`](../../../../../../shared/state/mcpRegistrySlice/interfaces/McpServer.md) \| `null` + +### mcpCredentials + +> **mcpCredentials**: `Record`\<`string`, `string`\> + +### openCreate + +> **openCreate**: () => `void` + +#### Returns + +`void` + +### openCredentialsDialog + +> **openCredentialsDialog**: (`toolId`, `integration`) => `void` + +#### Parameters + +##### toolId + +`string` + +##### integration + +[`Integration`](../../../integrations/interfaces/Integration.md) + +#### Returns + +`void` + +### openEdit + +> **openEdit**: (`tool`) => `void` + +#### Parameters + +##### tool + +[`ToolDefinition`](../../../../../../shared/state/toolsSlice/interfaces/ToolDefinition.md) + +#### Returns + +`void` + +### openRegistryBrowser + +> **openRegistryBrowser**: () => `void` + +#### Returns + +`void` + +### registryOpen + +> **registryOpen**: `boolean` + +### regQuery + +> **regQuery**: `string` + +### regSort + +> **regSort**: `"name"` \| `"stars"` + +### regSource + +> **regSource**: `RegSource` + +### setCredDialogOpen + +> **setCredDialogOpen**: `Dispatch`\<`SetStateAction`\<`boolean`\>\> + +### setCredDialogValues + +> **setCredDialogValues**: `Dispatch`\<`SetStateAction`\<`Record`\<`string`, `string`\>\>\> + +### setDeviceCodeDialogOpen + +> **setDeviceCodeDialogOpen**: `Dispatch`\<`SetStateAction`\<`boolean`\>\> + +### setDialogOpen + +> **setDialogOpen**: `Dispatch`\<`SetStateAction`\<`boolean`\>\> + +### setEditingId + +> **setEditingId**: `Dispatch`\<`SetStateAction`\<`string` \| `null`\>\> + +### setExpandedSchema + +> **setExpandedSchema**: `Dispatch`\<`SetStateAction`\<`string` \| `null`\>\> + +### setExpandedServer + +> **setExpandedServer**: `Dispatch`\<`SetStateAction`\<`string` \| `null`\>\> + +### setExpandedServices + +> **setExpandedServices**: `Dispatch`\<`SetStateAction`\<`Record`\<`string`, `boolean`\>\>\> + +### setExpandedToolId + +> **setExpandedToolId**: `Dispatch`\<`SetStateAction`\<`string` \| `null`\>\> + +### setForm + +> **setForm**: `Dispatch`\<`SetStateAction`\<[`ToolForm`](../../../toolsHelpers/interfaces/ToolForm.md)\>\> + +### setMcpAuthType + +> **setMcpAuthType**: `Dispatch`\<`SetStateAction`\<`"none"` \| `"env_vars"`\>\> + +### setMcpConfigError + +> **setMcpConfigError**: `Dispatch`\<`SetStateAction`\<`string`\>\> + +### setMcpConfigJson + +> **setMcpConfigJson**: `Dispatch`\<`SetStateAction`\<`string`\>\> + +### setMcpConfigOpen + +> **setMcpConfigOpen**: `Dispatch`\<`SetStateAction`\<`boolean`\>\> + +### setMcpCredentials + +> **setMcpCredentials**: `Dispatch`\<`SetStateAction`\<`Record`\<`string`, `string`\>\>\> + +### setRegistryOpen + +> **setRegistryOpen**: `Dispatch`\<`SetStateAction`\<`boolean`\>\> + +### setSnackbar + +> **setSnackbar**: `Dispatch`\<`SetStateAction`\<`Snackbar`\>\> + +### snackbar + +> **snackbar**: `Snackbar` diff --git a/frontend/.typedoc/app/pages/Tools/integrations/README.md b/frontend/.typedoc/app/pages/Tools/integrations/README.md new file mode 100644 index 00000000..8d3a54b1 --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/integrations/README.md @@ -0,0 +1,16 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/pages/Tools/integrations + +# app/pages/Tools/integrations + +## Interfaces + +- [CredentialField](interfaces/CredentialField.md) +- [Integration](interfaces/Integration.md) + +## Variables + +- [INTEGRATIONS](variables/INTEGRATIONS.md) diff --git a/frontend/.typedoc/app/pages/Tools/integrations/interfaces/CredentialField.md b/frontend/.typedoc/app/pages/Tools/integrations/interfaces/CredentialField.md new file mode 100644 index 00000000..28c32182 --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/integrations/interfaces/CredentialField.md @@ -0,0 +1,41 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/Tools/integrations](../README.md) / CredentialField + +# Interface: CredentialField + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/integrations.tsx:3](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/integrations.tsx#L3) + +## Properties + +### helpText? + +> `optional` **helpText?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/integrations.tsx:7](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/integrations.tsx#L7) + +*** + +### key + +> **key**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/integrations.tsx:4](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/integrations.tsx#L4) + +*** + +### label + +> **label**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/integrations.tsx:5](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/integrations.tsx#L5) + +*** + +### placeholder + +> **placeholder**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/integrations.tsx:6](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/integrations.tsx#L6) diff --git a/frontend/.typedoc/app/pages/Tools/integrations/interfaces/Integration.md b/frontend/.typedoc/app/pages/Tools/integrations/interfaces/Integration.md new file mode 100644 index 00000000..7ad25186 --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/integrations/interfaces/Integration.md @@ -0,0 +1,97 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/Tools/integrations](../README.md) / Integration + +# Interface: Integration + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/integrations.tsx:10](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/integrations.tsx#L10) + +## Properties + +### authType? + +> `optional` **authType?**: `"none"` \| `"env_vars"` \| `"oauth2"` \| `"device_code"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/integrations.tsx:21](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/integrations.tsx#L21) + +*** + +### color + +> **color**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/integrations.tsx:15](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/integrations.tsx#L15) + +*** + +### connectInstructions? + +> `optional` **connectInstructions?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/integrations.tsx:20](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/integrations.tsx#L20) + +*** + +### connectLabel? + +> `optional` **connectLabel?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/integrations.tsx:19](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/integrations.tsx#L19) + +*** + +### credentialFields? + +> `optional` **credentialFields?**: [`CredentialField`](CredentialField.md)[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/integrations.tsx:18](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/integrations.tsx#L18) + +*** + +### description + +> **description**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/integrations.tsx:13](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/integrations.tsx#L13) + +*** + +### icon + +> **icon**: `ReactNode` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/integrations.tsx:17](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/integrations.tsx#L17) + +*** + +### id + +> **id**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/integrations.tsx:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/integrations.tsx#L11) + +*** + +### mcp\_config + +> **mcp\_config**: `Record`\<`string`, `any`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/integrations.tsx:14](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/integrations.tsx#L14) + +*** + +### name + +> **name**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/integrations.tsx:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/integrations.tsx#L12) + +*** + +### website + +> **website**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/integrations.tsx:16](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/integrations.tsx#L16) diff --git a/frontend/.typedoc/app/pages/Tools/integrations/variables/INTEGRATIONS.md b/frontend/.typedoc/app/pages/Tools/integrations/variables/INTEGRATIONS.md new file mode 100644 index 00000000..4e7d77de --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/integrations/variables/INTEGRATIONS.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/Tools/integrations](../README.md) / INTEGRATIONS + +# Variable: INTEGRATIONS + +> `const` **INTEGRATIONS**: [`Integration`](../interfaces/Integration.md)[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/integrations.tsx:24](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/integrations.tsx#L24) diff --git a/frontend/.typedoc/app/pages/Tools/toolsHelpers/README.md b/frontend/.typedoc/app/pages/Tools/toolsHelpers/README.md new file mode 100644 index 00000000..20e598fc --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/toolsHelpers/README.md @@ -0,0 +1,22 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/pages/Tools/toolsHelpers + +# app/pages/Tools/toolsHelpers + +## Interfaces + +- [ToolForm](interfaces/ToolForm.md) + +## Variables + +- [CATEGORY\_ORDER](variables/CATEGORY_ORDER.md) +- [emptyForm](variables/emptyForm.md) + +## Functions + +- [cleanServerName](functions/cleanServerName.md) +- [serverToMcpConfig](functions/serverToMcpConfig.md) +- [serverToToolForm](functions/serverToToolForm.md) diff --git a/frontend/.typedoc/app/pages/Tools/toolsHelpers/functions/cleanServerName.md b/frontend/.typedoc/app/pages/Tools/toolsHelpers/functions/cleanServerName.md new file mode 100644 index 00000000..1fc8cc17 --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/toolsHelpers/functions/cleanServerName.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/Tools/toolsHelpers](../README.md) / cleanServerName + +# Function: cleanServerName() + +> **cleanServerName**(`name`): `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/toolsHelpers.ts:17](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/toolsHelpers.ts#L17) + +## Parameters + +### name + +`string` + +## Returns + +`string` diff --git a/frontend/.typedoc/app/pages/Tools/toolsHelpers/functions/serverToMcpConfig.md b/frontend/.typedoc/app/pages/Tools/toolsHelpers/functions/serverToMcpConfig.md new file mode 100644 index 00000000..cc948b55 --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/toolsHelpers/functions/serverToMcpConfig.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/Tools/toolsHelpers](../README.md) / serverToMcpConfig + +# Function: serverToMcpConfig() + +> **serverToMcpConfig**(`srv`): `Record`\<`string`, `any`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/toolsHelpers.ts:30](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/toolsHelpers.ts#L30) + +## Parameters + +### srv + +[`McpServer`](../../../../../shared/state/mcpRegistrySlice/interfaces/McpServer.md) + +## Returns + +`Record`\<`string`, `any`\> diff --git a/frontend/.typedoc/app/pages/Tools/toolsHelpers/functions/serverToToolForm.md b/frontend/.typedoc/app/pages/Tools/toolsHelpers/functions/serverToToolForm.md new file mode 100644 index 00000000..066feac0 --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/toolsHelpers/functions/serverToToolForm.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/Tools/toolsHelpers](../README.md) / serverToToolForm + +# Function: serverToToolForm() + +> **serverToToolForm**(`srv`): [`ToolForm`](../interfaces/ToolForm.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/toolsHelpers.ts:22](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/toolsHelpers.ts#L22) + +## Parameters + +### srv + +[`McpServer`](../../../../../shared/state/mcpRegistrySlice/interfaces/McpServer.md) + +## Returns + +[`ToolForm`](../interfaces/ToolForm.md) diff --git a/frontend/.typedoc/app/pages/Tools/toolsHelpers/interfaces/ToolForm.md b/frontend/.typedoc/app/pages/Tools/toolsHelpers/interfaces/ToolForm.md new file mode 100644 index 00000000..3f258c15 --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/toolsHelpers/interfaces/ToolForm.md @@ -0,0 +1,33 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/Tools/toolsHelpers](../README.md) / ToolForm + +# Interface: ToolForm + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/toolsHelpers.ts:5](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/toolsHelpers.ts#L5) + +## Properties + +### command + +> **command**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/toolsHelpers.ts:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/toolsHelpers.ts#L8) + +*** + +### description + +> **description**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/toolsHelpers.ts:7](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/toolsHelpers.ts#L7) + +*** + +### name + +> **name**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/toolsHelpers.ts:6](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/toolsHelpers.ts#L6) diff --git a/frontend/.typedoc/app/pages/Tools/toolsHelpers/variables/CATEGORY_ORDER.md b/frontend/.typedoc/app/pages/Tools/toolsHelpers/variables/CATEGORY_ORDER.md new file mode 100644 index 00000000..df08ac26 --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/toolsHelpers/variables/CATEGORY_ORDER.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/Tools/toolsHelpers](../README.md) / CATEGORY\_ORDER + +# Variable: CATEGORY\_ORDER + +> `const` **CATEGORY\_ORDER**: `string`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/toolsHelpers.ts:3](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/toolsHelpers.ts#L3) diff --git a/frontend/.typedoc/app/pages/Tools/toolsHelpers/variables/emptyForm.md b/frontend/.typedoc/app/pages/Tools/toolsHelpers/variables/emptyForm.md new file mode 100644 index 00000000..37c3d1df --- /dev/null +++ b/frontend/.typedoc/app/pages/Tools/toolsHelpers/variables/emptyForm.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/Tools/toolsHelpers](../README.md) / emptyForm + +# Variable: emptyForm + +> `const` **emptyForm**: [`ToolForm`](../interfaces/ToolForm.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Tools/toolsHelpers.ts:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Tools/toolsHelpers.ts#L11) diff --git a/frontend/.typedoc/app/pages/Views/CodeEditor/README.md b/frontend/.typedoc/app/pages/Views/CodeEditor/README.md new file mode 100644 index 00000000..2458ba2b --- /dev/null +++ b/frontend/.typedoc/app/pages/Views/CodeEditor/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/pages/Views/CodeEditor + +# app/pages/Views/CodeEditor + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Views/CodeEditor/variables/default.md b/frontend/.typedoc/app/pages/Views/CodeEditor/variables/default.md new file mode 100644 index 00000000..30145b02 --- /dev/null +++ b/frontend/.typedoc/app/pages/Views/CodeEditor/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/Views/CodeEditor](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Views/CodeEditor.tsx:29](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Views/CodeEditor.tsx#L29) diff --git a/frontend/.typedoc/app/pages/Views/InputSchemaForm/README.md b/frontend/.typedoc/app/pages/Views/InputSchemaForm/README.md new file mode 100644 index 00000000..cad3bffe --- /dev/null +++ b/frontend/.typedoc/app/pages/Views/InputSchemaForm/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/pages/Views/InputSchemaForm + +# app/pages/Views/InputSchemaForm + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Views/InputSchemaForm/variables/default.md b/frontend/.typedoc/app/pages/Views/InputSchemaForm/variables/default.md new file mode 100644 index 00000000..fb5a5975 --- /dev/null +++ b/frontend/.typedoc/app/pages/Views/InputSchemaForm/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/Views/InputSchemaForm](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Views/InputSchemaForm.tsx:26](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Views/InputSchemaForm.tsx#L26) diff --git a/frontend/.typedoc/app/pages/Views/TerminalPanel/README.md b/frontend/.typedoc/app/pages/Views/TerminalPanel/README.md new file mode 100644 index 00000000..61dcdcef --- /dev/null +++ b/frontend/.typedoc/app/pages/Views/TerminalPanel/README.md @@ -0,0 +1,19 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/pages/Views/TerminalPanel + +# app/pages/Views/TerminalPanel + +## Interfaces + +- [TerminalLine](interfaces/TerminalLine.md) + +## Type Aliases + +- [TerminalSource](type-aliases/TerminalSource.md) + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Views/TerminalPanel/interfaces/TerminalLine.md b/frontend/.typedoc/app/pages/Views/TerminalPanel/interfaces/TerminalLine.md new file mode 100644 index 00000000..22184ea9 --- /dev/null +++ b/frontend/.typedoc/app/pages/Views/TerminalPanel/interfaces/TerminalLine.md @@ -0,0 +1,41 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/Views/TerminalPanel](../README.md) / TerminalLine + +# Interface: TerminalLine + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Views/TerminalPanel.tsx:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Views/TerminalPanel.tsx#L8) + +## Properties + +### id + +> **id**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Views/TerminalPanel.tsx:10](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Views/TerminalPanel.tsx#L10) + +*** + +### level + +> **level**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Views/TerminalPanel.tsx:13](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Views/TerminalPanel.tsx#L13) + +*** + +### source + +> **source**: [`TerminalSource`](../type-aliases/TerminalSource.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Views/TerminalPanel.tsx:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Views/TerminalPanel.tsx#L11) + +*** + +### text + +> **text**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Views/TerminalPanel.tsx:14](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Views/TerminalPanel.tsx#L14) diff --git a/frontend/.typedoc/app/pages/Views/TerminalPanel/type-aliases/TerminalSource.md b/frontend/.typedoc/app/pages/Views/TerminalPanel/type-aliases/TerminalSource.md new file mode 100644 index 00000000..2448d90f --- /dev/null +++ b/frontend/.typedoc/app/pages/Views/TerminalPanel/type-aliases/TerminalSource.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/Views/TerminalPanel](../README.md) / TerminalSource + +# Type Alias: TerminalSource + +> **TerminalSource** = `"frontend"` \| `"backend"` \| `"runtime"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Views/TerminalPanel.tsx:6](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Views/TerminalPanel.tsx#L6) diff --git a/frontend/.typedoc/app/pages/Views/TerminalPanel/variables/default.md b/frontend/.typedoc/app/pages/Views/TerminalPanel/variables/default.md new file mode 100644 index 00000000..dad4f2d8 --- /dev/null +++ b/frontend/.typedoc/app/pages/Views/TerminalPanel/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/Views/TerminalPanel](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Views/TerminalPanel.tsx:42](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Views/TerminalPanel.tsx#L42) diff --git a/frontend/.typedoc/app/pages/Views/ViewCard/README.md b/frontend/.typedoc/app/pages/Views/ViewCard/README.md new file mode 100644 index 00000000..449096dc --- /dev/null +++ b/frontend/.typedoc/app/pages/Views/ViewCard/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/pages/Views/ViewCard + +# app/pages/Views/ViewCard + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Views/ViewCard/variables/default.md b/frontend/.typedoc/app/pages/Views/ViewCard/variables/default.md new file mode 100644 index 00000000..b0aa20c3 --- /dev/null +++ b/frontend/.typedoc/app/pages/Views/ViewCard/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/Views/ViewCard](../README.md) / default + +# Variable: default + +> **default**: `NamedExoticComponent`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Views/ViewCard.tsx:159](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Views/ViewCard.tsx#L159) diff --git a/frontend/.typedoc/app/pages/Views/ViewEditor/README.md b/frontend/.typedoc/app/pages/Views/ViewEditor/README.md new file mode 100644 index 00000000..26e03819 --- /dev/null +++ b/frontend/.typedoc/app/pages/Views/ViewEditor/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/pages/Views/ViewEditor + +# app/pages/Views/ViewEditor + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Views/ViewEditor/variables/default.md b/frontend/.typedoc/app/pages/Views/ViewEditor/variables/default.md new file mode 100644 index 00000000..7863b7c1 --- /dev/null +++ b/frontend/.typedoc/app/pages/Views/ViewEditor/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/Views/ViewEditor](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Views/ViewEditor.tsx:290](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Views/ViewEditor.tsx#L290) diff --git a/frontend/.typedoc/app/pages/Views/ViewPreview/README.md b/frontend/.typedoc/app/pages/Views/ViewPreview/README.md new file mode 100644 index 00000000..7402bfb4 --- /dev/null +++ b/frontend/.typedoc/app/pages/Views/ViewPreview/README.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/pages/Views/ViewPreview + +# app/pages/Views/ViewPreview + +## Interfaces + +- [ViewPreviewHandle](interfaces/ViewPreviewHandle.md) + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Views/ViewPreview/interfaces/ViewPreviewHandle.md b/frontend/.typedoc/app/pages/Views/ViewPreview/interfaces/ViewPreviewHandle.md new file mode 100644 index 00000000..3e265bfb --- /dev/null +++ b/frontend/.typedoc/app/pages/Views/ViewPreview/interfaces/ViewPreviewHandle.md @@ -0,0 +1,35 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/Views/ViewPreview](../README.md) / ViewPreviewHandle + +# Interface: ViewPreviewHandle + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Views/ViewPreview.tsx:40](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Views/ViewPreview.tsx#L40) + +## Properties + +### capture + +> **capture**: () => `Promise`\<`string` \| `null`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Views/ViewPreview.tsx:43](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Views/ViewPreview.tsx#L43) + +Native snapshot of the live preview as a small JPEG data URL, or null if not capturable (iframe/dev, hidden, or webview not ready). + +#### Returns + +`Promise`\<`string` \| `null`\> + +*** + +### reload + +> **reload**: () => `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Views/ViewPreview.tsx:41](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Views/ViewPreview.tsx#L41) + +#### Returns + +`void` diff --git a/frontend/.typedoc/app/pages/Views/ViewPreview/variables/default.md b/frontend/.typedoc/app/pages/Views/ViewPreview/variables/default.md new file mode 100644 index 00000000..5f26780a --- /dev/null +++ b/frontend/.typedoc/app/pages/Views/ViewPreview/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/Views/ViewPreview](../README.md) / default + +# Variable: default + +> `const` **default**: `ForwardRefExoticComponent`\<`Props` & `RefAttributes`\<[`ViewPreviewHandle`](../interfaces/ViewPreviewHandle.md)\>\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Views/ViewPreview.tsx:87](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Views/ViewPreview.tsx#L87) diff --git a/frontend/.typedoc/app/pages/Views/ViewRunDialog/README.md b/frontend/.typedoc/app/pages/Views/ViewRunDialog/README.md new file mode 100644 index 00000000..030b6762 --- /dev/null +++ b/frontend/.typedoc/app/pages/Views/ViewRunDialog/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/pages/Views/ViewRunDialog + +# app/pages/Views/ViewRunDialog + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Views/ViewRunDialog/variables/default.md b/frontend/.typedoc/app/pages/Views/ViewRunDialog/variables/default.md new file mode 100644 index 00000000..03af9218 --- /dev/null +++ b/frontend/.typedoc/app/pages/Views/ViewRunDialog/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/Views/ViewRunDialog](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC`\<`Props`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Views/ViewRunDialog.tsx:23](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Views/ViewRunDialog.tsx#L23) diff --git a/frontend/.typedoc/app/pages/Views/Views/README.md b/frontend/.typedoc/app/pages/Views/Views/README.md new file mode 100644 index 00000000..23081034 --- /dev/null +++ b/frontend/.typedoc/app/pages/Views/Views/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/pages/Views/Views + +# app/pages/Views/Views + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/app/pages/Views/Views/variables/default.md b/frontend/.typedoc/app/pages/Views/Views/variables/default.md new file mode 100644 index 00000000..cc8a7f3c --- /dev/null +++ b/frontend/.typedoc/app/pages/Views/Views/variables/default.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/Views/Views](../README.md) / default + +# Variable: default + +> `const` **default**: `React.FC` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Views/Views.tsx:17](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Views/Views.tsx#L17) diff --git a/frontend/.typedoc/app/pages/Views/useIframeElementSelector/README.md b/frontend/.typedoc/app/pages/Views/useIframeElementSelector/README.md new file mode 100644 index 00000000..b5e4bbbf --- /dev/null +++ b/frontend/.typedoc/app/pages/Views/useIframeElementSelector/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / app/pages/Views/useIframeElementSelector + +# app/pages/Views/useIframeElementSelector + +## Functions + +- [useIframeElementSelector](functions/useIframeElementSelector.md) diff --git a/frontend/.typedoc/app/pages/Views/useIframeElementSelector/functions/useIframeElementSelector.md b/frontend/.typedoc/app/pages/Views/useIframeElementSelector/functions/useIframeElementSelector.md new file mode 100644 index 00000000..439700c0 --- /dev/null +++ b/frontend/.typedoc/app/pages/Views/useIframeElementSelector/functions/useIframeElementSelector.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [app/pages/Views/useIframeElementSelector](../README.md) / useIframeElementSelector + +# Function: useIframeElementSelector() + +> **useIframeElementSelector**(`explicitIframeRef?`): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/app/pages/Views/useIframeElementSelector.ts:107](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/app/pages/Views/useIframeElementSelector.ts#L107) + +## Parameters + +### explicitIframeRef? + +`RefObject`\<`HTMLIFrameElement` \| `null`\> + +## Returns + +`void` diff --git a/frontend/.typedoc/index/README.md b/frontend/.typedoc/index/README.md new file mode 100644 index 00000000..5dd3b929 --- /dev/null +++ b/frontend/.typedoc/index/README.md @@ -0,0 +1,7 @@ +[**open-swarm**](../README.md) + +*** + +[open-swarm](../README.md) / index + +# index diff --git a/frontend/.typedoc/shared/agentWorkTime/README.md b/frontend/.typedoc/shared/agentWorkTime/README.md new file mode 100644 index 00000000..5fb5a247 --- /dev/null +++ b/frontend/.typedoc/shared/agentWorkTime/README.md @@ -0,0 +1,12 @@ +[**open-swarm**](../../README.md) + +*** + +[open-swarm](../../README.md) / shared/agentWorkTime + +# shared/agentWorkTime + +## Functions + +- [fmtSeconds](functions/fmtSeconds.md) +- [getAgentWorkTime](functions/getAgentWorkTime.md) diff --git a/frontend/.typedoc/shared/agentWorkTime/functions/fmtSeconds.md b/frontend/.typedoc/shared/agentWorkTime/functions/fmtSeconds.md new file mode 100644 index 00000000..51a1ca94 --- /dev/null +++ b/frontend/.typedoc/shared/agentWorkTime/functions/fmtSeconds.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/agentWorkTime](../README.md) / fmtSeconds + +# Function: fmtSeconds() + +> **fmtSeconds**(`seconds`): `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/agentWorkTime.ts:61](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/agentWorkTime.ts#L61) + +## Parameters + +### seconds + +`number` + +## Returns + +`string` diff --git a/frontend/.typedoc/shared/agentWorkTime/functions/getAgentWorkTime.md b/frontend/.typedoc/shared/agentWorkTime/functions/getAgentWorkTime.md new file mode 100644 index 00000000..f3dbf12a --- /dev/null +++ b/frontend/.typedoc/shared/agentWorkTime/functions/getAgentWorkTime.md @@ -0,0 +1,33 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/agentWorkTime](../README.md) / getAgentWorkTime + +# Function: getAgentWorkTime() + +> **getAgentWorkTime**(`messages`, `status`): `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/agentWorkTime.ts:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/agentWorkTime.ts#L8) + +## Parameters + +### messages + +`WorkMessage`[] + +### status + +`string` + +## Returns + +`object` + +### last + +> **last**: `number` + +### total + +> **total**: `number` diff --git a/frontend/.typedoc/shared/browserCommandHandler/README.md b/frontend/.typedoc/shared/browserCommandHandler/README.md new file mode 100644 index 00000000..6898ad69 --- /dev/null +++ b/frontend/.typedoc/shared/browserCommandHandler/README.md @@ -0,0 +1,23 @@ +[**open-swarm**](../../README.md) + +*** + +[open-swarm](../../README.md) / shared/browserCommandHandler + +# shared/browserCommandHandler + +## Interfaces + +- [BrowserActivity](interfaces/BrowserActivity.md) + +## Type Aliases + +- [BrowserAction](type-aliases/BrowserAction.md) + +## Functions + +- [getActionLabel](functions/getActionLabel.md) +- [getActivity](functions/getActivity.md) +- [initBrowserCommandHandler](functions/initBrowserCommandHandler.md) +- [isAnyBrowserBusy](functions/isAnyBrowserBusy.md) +- [subscribeActivity](functions/subscribeActivity.md) diff --git a/frontend/.typedoc/shared/browserCommandHandler/functions/getActionLabel.md b/frontend/.typedoc/shared/browserCommandHandler/functions/getActionLabel.md new file mode 100644 index 00000000..cea41c58 --- /dev/null +++ b/frontend/.typedoc/shared/browserCommandHandler/functions/getActionLabel.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/browserCommandHandler](../README.md) / getActionLabel + +# Function: getActionLabel() + +> **getActionLabel**(`action`): `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserCommandHandler.ts:75](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserCommandHandler.ts#L75) + +## Parameters + +### action + +`string` + +## Returns + +`string` diff --git a/frontend/.typedoc/shared/browserCommandHandler/functions/getActivity.md b/frontend/.typedoc/shared/browserCommandHandler/functions/getActivity.md new file mode 100644 index 00000000..fc1b4a2d --- /dev/null +++ b/frontend/.typedoc/shared/browserCommandHandler/functions/getActivity.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/browserCommandHandler](../README.md) / getActivity + +# Function: getActivity() + +> **getActivity**(`browserId`): [`BrowserActivity`](../interfaces/BrowserActivity.md) \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserCommandHandler.ts:41](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserCommandHandler.ts#L41) + +## Parameters + +### browserId + +`string` + +## Returns + +[`BrowserActivity`](../interfaces/BrowserActivity.md) \| `null` diff --git a/frontend/.typedoc/shared/browserCommandHandler/functions/initBrowserCommandHandler.md b/frontend/.typedoc/shared/browserCommandHandler/functions/initBrowserCommandHandler.md new file mode 100644 index 00000000..1aa2af62 --- /dev/null +++ b/frontend/.typedoc/shared/browserCommandHandler/functions/initBrowserCommandHandler.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/browserCommandHandler](../README.md) / initBrowserCommandHandler + +# Function: initBrowserCommandHandler() + +> **initBrowserCommandHandler**(): () => `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserCommandHandler.ts:1501](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserCommandHandler.ts#L1501) + +## Returns + +() => `void` diff --git a/frontend/.typedoc/shared/browserCommandHandler/functions/isAnyBrowserBusy.md b/frontend/.typedoc/shared/browserCommandHandler/functions/isAnyBrowserBusy.md new file mode 100644 index 00000000..9e487c3e --- /dev/null +++ b/frontend/.typedoc/shared/browserCommandHandler/functions/isAnyBrowserBusy.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/browserCommandHandler](../README.md) / isAnyBrowserBusy + +# Function: isAnyBrowserBusy() + +> **isAnyBrowserBusy**(): `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserCommandHandler.ts:48](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserCommandHandler.ts#L48) + +## Returns + +`boolean` diff --git a/frontend/.typedoc/shared/browserCommandHandler/functions/subscribeActivity.md b/frontend/.typedoc/shared/browserCommandHandler/functions/subscribeActivity.md new file mode 100644 index 00000000..9af9126c --- /dev/null +++ b/frontend/.typedoc/shared/browserCommandHandler/functions/subscribeActivity.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/browserCommandHandler](../README.md) / subscribeActivity + +# Function: subscribeActivity() + +> **subscribeActivity**(`fn`): () => `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserCommandHandler.ts:53](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserCommandHandler.ts#L53) + +## Parameters + +### fn + +`ActivityListener` + +## Returns + +() => `void` diff --git a/frontend/.typedoc/shared/browserCommandHandler/interfaces/BrowserActivity.md b/frontend/.typedoc/shared/browserCommandHandler/interfaces/BrowserActivity.md new file mode 100644 index 00000000..bbe92112 --- /dev/null +++ b/frontend/.typedoc/shared/browserCommandHandler/interfaces/BrowserActivity.md @@ -0,0 +1,41 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/browserCommandHandler](../README.md) / BrowserActivity + +# Interface: BrowserActivity + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserCommandHandler.ts:13](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserCommandHandler.ts#L13) + +## Properties + +### action + +> **action**: [`BrowserAction`](../type-aliases/BrowserAction.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserCommandHandler.ts:14](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserCommandHandler.ts#L14) + +*** + +### coords? + +> `optional` **coords?**: `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserCommandHandler.ts:16](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserCommandHandler.ts#L16) + +#### xPercent + +> **xPercent**: `number` + +#### yPercent + +> **yPercent**: `number` + +*** + +### detail? + +> `optional` **detail?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserCommandHandler.ts:15](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserCommandHandler.ts#L15) diff --git a/frontend/.typedoc/shared/browserCommandHandler/type-aliases/BrowserAction.md b/frontend/.typedoc/shared/browserCommandHandler/type-aliases/BrowserAction.md new file mode 100644 index 00000000..88a0555d --- /dev/null +++ b/frontend/.typedoc/shared/browserCommandHandler/type-aliases/BrowserAction.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/browserCommandHandler](../README.md) / BrowserAction + +# Type Alias: BrowserAction + +> **BrowserAction** = `"screenshot"` \| `"get_text"` \| `"get_console"` \| `"navigate"` \| `"click"` \| `"type"` \| `"evaluate"` \| `"get_elements"` \| `"scroll"` \| `"wait"` \| `"press_key"` \| `"list_interactives"` \| `"click_index"` \| `"batch"` \| `"detect_webmcp"` \| `"list_routes"` \| `"replay_route"` \| `"click_by_name"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserCommandHandler.ts:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserCommandHandler.ts#L11) diff --git a/frontend/.typedoc/shared/browserRegistry/README.md b/frontend/.typedoc/shared/browserRegistry/README.md new file mode 100644 index 00000000..c7392e35 --- /dev/null +++ b/frontend/.typedoc/shared/browserRegistry/README.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../README.md) + +*** + +[open-swarm](../../README.md) / shared/browserRegistry + +# shared/browserRegistry + +## Interfaces + +- [BrowserWebview](interfaces/BrowserWebview.md) +- [ElectronNativeImage](interfaces/ElectronNativeImage.md) + +## Functions + +- [anyWebviewLoading](functions/anyWebviewLoading.md) +- [findBrowserByWebContentsId](functions/findBrowserByWebContentsId.md) +- [getWebview](functions/getWebview.md) +- [registerWebview](functions/registerWebview.md) +- [setActiveTab](functions/setActiveTab.md) +- [unregisterWebview](functions/unregisterWebview.md) diff --git a/frontend/.typedoc/shared/browserRegistry/functions/anyWebviewLoading.md b/frontend/.typedoc/shared/browserRegistry/functions/anyWebviewLoading.md new file mode 100644 index 00000000..683af3cb --- /dev/null +++ b/frontend/.typedoc/shared/browserRegistry/functions/anyWebviewLoading.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/browserRegistry](../README.md) / anyWebviewLoading + +# Function: anyWebviewLoading() + +> **anyWebviewLoading**(): `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserRegistry.ts:73](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserRegistry.ts#L73) + +## Returns + +`boolean` diff --git a/frontend/.typedoc/shared/browserRegistry/functions/findBrowserByWebContentsId.md b/frontend/.typedoc/shared/browserRegistry/functions/findBrowserByWebContentsId.md new file mode 100644 index 00000000..b72ad137 --- /dev/null +++ b/frontend/.typedoc/shared/browserRegistry/functions/findBrowserByWebContentsId.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/browserRegistry](../README.md) / findBrowserByWebContentsId + +# Function: findBrowserByWebContentsId() + +> **findBrowserByWebContentsId**(`wcId`): `string` \| `undefined` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserRegistry.ts:60](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserRegistry.ts#L60) + +## Parameters + +### wcId + +`number` + +## Returns + +`string` \| `undefined` diff --git a/frontend/.typedoc/shared/browserRegistry/functions/getWebview.md b/frontend/.typedoc/shared/browserRegistry/functions/getWebview.md new file mode 100644 index 00000000..a111035e --- /dev/null +++ b/frontend/.typedoc/shared/browserRegistry/functions/getWebview.md @@ -0,0 +1,25 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/browserRegistry](../README.md) / getWebview + +# Function: getWebview() + +> **getWebview**(`browserId`, `tabId?`): [`BrowserWebview`](../interfaces/BrowserWebview.md) \| `undefined` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserRegistry.ts:54](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserRegistry.ts#L54) + +## Parameters + +### browserId + +`string` + +### tabId? + +`string` + +## Returns + +[`BrowserWebview`](../interfaces/BrowserWebview.md) \| `undefined` diff --git a/frontend/.typedoc/shared/browserRegistry/functions/registerWebview.md b/frontend/.typedoc/shared/browserRegistry/functions/registerWebview.md new file mode 100644 index 00000000..c20a4d51 --- /dev/null +++ b/frontend/.typedoc/shared/browserRegistry/functions/registerWebview.md @@ -0,0 +1,29 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/browserRegistry](../README.md) / registerWebview + +# Function: registerWebview() + +> **registerWebview**(`browserId`, `tabId`, `wv`): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserRegistry.ts:42](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserRegistry.ts#L42) + +## Parameters + +### browserId + +`string` + +### tabId + +`string` + +### wv + +[`BrowserWebview`](../interfaces/BrowserWebview.md) + +## Returns + +`void` diff --git a/frontend/.typedoc/shared/browserRegistry/functions/setActiveTab.md b/frontend/.typedoc/shared/browserRegistry/functions/setActiveTab.md new file mode 100644 index 00000000..d65ff10f --- /dev/null +++ b/frontend/.typedoc/shared/browserRegistry/functions/setActiveTab.md @@ -0,0 +1,25 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/browserRegistry](../README.md) / setActiveTab + +# Function: setActiveTab() + +> **setActiveTab**(`browserId`, `tabId`): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserRegistry.ts:50](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserRegistry.ts#L50) + +## Parameters + +### browserId + +`string` + +### tabId + +`string` + +## Returns + +`void` diff --git a/frontend/.typedoc/shared/browserRegistry/functions/unregisterWebview.md b/frontend/.typedoc/shared/browserRegistry/functions/unregisterWebview.md new file mode 100644 index 00000000..b114389b --- /dev/null +++ b/frontend/.typedoc/shared/browserRegistry/functions/unregisterWebview.md @@ -0,0 +1,25 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/browserRegistry](../README.md) / unregisterWebview + +# Function: unregisterWebview() + +> **unregisterWebview**(`browserId`, `tabId`): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserRegistry.ts:46](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserRegistry.ts#L46) + +## Parameters + +### browserId + +`string` + +### tabId + +`string` + +## Returns + +`void` diff --git a/frontend/.typedoc/shared/browserRegistry/interfaces/BrowserWebview.md b/frontend/.typedoc/shared/browserRegistry/interfaces/BrowserWebview.md new file mode 100644 index 00000000..b9466c1e --- /dev/null +++ b/frontend/.typedoc/shared/browserRegistry/interfaces/BrowserWebview.md @@ -0,0 +1,6619 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/browserRegistry](../README.md) / BrowserWebview + +# Interface: BrowserWebview + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserRegistry.ts:16](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserRegistry.ts#L16) + +## Extends + +- `HTMLElement` + +## Properties + +### accessKey + +> **accessKey**: `string` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:17735 + +The **`HTMLElement.accessKey`** property sets the keystroke which a user can press to jump to a given element. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/accessKey) + +#### Inherited from + +`HTMLElement.accessKey` + +*** + +### accessKeyLabel + +> `readonly` **accessKeyLabel**: `string` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:17741 + +The **`HTMLElement.accessKeyLabel`** read-only property returns a string containing the element's browser-assigned access key (if any); otherwise it returns an empty string. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/accessKeyLabel) + +#### Inherited from + +`HTMLElement.accessKeyLabel` + +*** + +### addEventListener + +> **addEventListener**: (`event`, `listener`, `options?`) => `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserRegistry.ts:31](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserRegistry.ts#L31) + +#### Parameters + +##### event + +`string` + +##### listener + +(...`args`) => `void` + +##### options? + +`boolean` \| `AddEventListenerOptions` + +#### Returns + +`void` + +#### Overrides + +`HTMLElement.addEventListener` + +*** + +### ariaActiveDescendantElement + +> **ariaActiveDescendantElement**: `Element` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3242 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaActiveDescendantElement) + +#### Inherited from + +`HTMLElement.ariaActiveDescendantElement` + +*** + +### ariaAtomic + +> **ariaAtomic**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3244 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaAtomic) + +#### Inherited from + +`HTMLElement.ariaAtomic` + +*** + +### ariaAutoComplete + +> **ariaAutoComplete**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3246 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaAutoComplete) + +#### Inherited from + +`HTMLElement.ariaAutoComplete` + +*** + +### ariaBrailleLabel + +> **ariaBrailleLabel**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3248 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaBrailleLabel) + +#### Inherited from + +`HTMLElement.ariaBrailleLabel` + +*** + +### ariaBrailleRoleDescription + +> **ariaBrailleRoleDescription**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3250 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaBrailleRoleDescription) + +#### Inherited from + +`HTMLElement.ariaBrailleRoleDescription` + +*** + +### ariaBusy + +> **ariaBusy**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3252 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaBusy) + +#### Inherited from + +`HTMLElement.ariaBusy` + +*** + +### ariaChecked + +> **ariaChecked**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3254 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaChecked) + +#### Inherited from + +`HTMLElement.ariaChecked` + +*** + +### ariaColCount + +> **ariaColCount**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3256 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaColCount) + +#### Inherited from + +`HTMLElement.ariaColCount` + +*** + +### ariaColIndex + +> **ariaColIndex**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3258 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaColIndex) + +#### Inherited from + +`HTMLElement.ariaColIndex` + +*** + +### ariaColIndexText + +> **ariaColIndexText**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3260 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaColIndexText) + +#### Inherited from + +`HTMLElement.ariaColIndexText` + +*** + +### ariaColSpan + +> **ariaColSpan**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3262 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaColSpan) + +#### Inherited from + +`HTMLElement.ariaColSpan` + +*** + +### ariaControlsElements + +> **ariaControlsElements**: readonly `Element`[] \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3264 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaControlsElements) + +#### Inherited from + +`HTMLElement.ariaControlsElements` + +*** + +### ariaCurrent + +> **ariaCurrent**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3266 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaCurrent) + +#### Inherited from + +`HTMLElement.ariaCurrent` + +*** + +### ariaDescribedByElements + +> **ariaDescribedByElements**: readonly `Element`[] \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3268 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDescribedByElements) + +#### Inherited from + +`HTMLElement.ariaDescribedByElements` + +*** + +### ariaDescription + +> **ariaDescription**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3270 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDescription) + +#### Inherited from + +`HTMLElement.ariaDescription` + +*** + +### ariaDetailsElements + +> **ariaDetailsElements**: readonly `Element`[] \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3272 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDetailsElements) + +#### Inherited from + +`HTMLElement.ariaDetailsElements` + +*** + +### ariaDisabled + +> **ariaDisabled**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3274 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDisabled) + +#### Inherited from + +`HTMLElement.ariaDisabled` + +*** + +### ariaErrorMessageElements + +> **ariaErrorMessageElements**: readonly `Element`[] \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3276 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaErrorMessageElements) + +#### Inherited from + +`HTMLElement.ariaErrorMessageElements` + +*** + +### ariaExpanded + +> **ariaExpanded**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3278 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaExpanded) + +#### Inherited from + +`HTMLElement.ariaExpanded` + +*** + +### ariaFlowToElements + +> **ariaFlowToElements**: readonly `Element`[] \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3280 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaFlowToElements) + +#### Inherited from + +`HTMLElement.ariaFlowToElements` + +*** + +### ariaHasPopup + +> **ariaHasPopup**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3282 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaHasPopup) + +#### Inherited from + +`HTMLElement.ariaHasPopup` + +*** + +### ariaHidden + +> **ariaHidden**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3284 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaHidden) + +#### Inherited from + +`HTMLElement.ariaHidden` + +*** + +### ariaInvalid + +> **ariaInvalid**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3286 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaInvalid) + +#### Inherited from + +`HTMLElement.ariaInvalid` + +*** + +### ariaKeyShortcuts + +> **ariaKeyShortcuts**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3288 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaKeyShortcuts) + +#### Inherited from + +`HTMLElement.ariaKeyShortcuts` + +*** + +### ariaLabel + +> **ariaLabel**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3290 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaLabel) + +#### Inherited from + +`HTMLElement.ariaLabel` + +*** + +### ariaLabelledByElements + +> **ariaLabelledByElements**: readonly `Element`[] \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3292 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaLabelledByElements) + +#### Inherited from + +`HTMLElement.ariaLabelledByElements` + +*** + +### ariaLevel + +> **ariaLevel**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3294 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaLevel) + +#### Inherited from + +`HTMLElement.ariaLevel` + +*** + +### ariaLive + +> **ariaLive**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3296 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaLive) + +#### Inherited from + +`HTMLElement.ariaLive` + +*** + +### ariaModal + +> **ariaModal**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3298 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaModal) + +#### Inherited from + +`HTMLElement.ariaModal` + +*** + +### ariaMultiLine + +> **ariaMultiLine**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3300 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaMultiLine) + +#### Inherited from + +`HTMLElement.ariaMultiLine` + +*** + +### ariaMultiSelectable + +> **ariaMultiSelectable**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3302 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaMultiSelectable) + +#### Inherited from + +`HTMLElement.ariaMultiSelectable` + +*** + +### ariaOrientation + +> **ariaOrientation**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3304 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaOrientation) + +#### Inherited from + +`HTMLElement.ariaOrientation` + +*** + +### ariaOwnsElements + +> **ariaOwnsElements**: readonly `Element`[] \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3306 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaOwnsElements) + +#### Inherited from + +`HTMLElement.ariaOwnsElements` + +*** + +### ariaPlaceholder + +> **ariaPlaceholder**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3308 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaPlaceholder) + +#### Inherited from + +`HTMLElement.ariaPlaceholder` + +*** + +### ariaPosInSet + +> **ariaPosInSet**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3310 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaPosInSet) + +#### Inherited from + +`HTMLElement.ariaPosInSet` + +*** + +### ariaPressed + +> **ariaPressed**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3312 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaPressed) + +#### Inherited from + +`HTMLElement.ariaPressed` + +*** + +### ariaReadOnly + +> **ariaReadOnly**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3314 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaReadOnly) + +#### Inherited from + +`HTMLElement.ariaReadOnly` + +*** + +### ariaRelevant + +> **ariaRelevant**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3316 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaRelevant) + +#### Inherited from + +`HTMLElement.ariaRelevant` + +*** + +### ariaRequired + +> **ariaRequired**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3318 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaRequired) + +#### Inherited from + +`HTMLElement.ariaRequired` + +*** + +### ariaRoleDescription + +> **ariaRoleDescription**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3320 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaRoleDescription) + +#### Inherited from + +`HTMLElement.ariaRoleDescription` + +*** + +### ariaRowCount + +> **ariaRowCount**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3322 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaRowCount) + +#### Inherited from + +`HTMLElement.ariaRowCount` + +*** + +### ariaRowIndex + +> **ariaRowIndex**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3324 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaRowIndex) + +#### Inherited from + +`HTMLElement.ariaRowIndex` + +*** + +### ariaRowIndexText + +> **ariaRowIndexText**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3326 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaRowIndexText) + +#### Inherited from + +`HTMLElement.ariaRowIndexText` + +*** + +### ariaRowSpan + +> **ariaRowSpan**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3328 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaRowSpan) + +#### Inherited from + +`HTMLElement.ariaRowSpan` + +*** + +### ariaSelected + +> **ariaSelected**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3330 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaSelected) + +#### Inherited from + +`HTMLElement.ariaSelected` + +*** + +### ariaSetSize + +> **ariaSetSize**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3332 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaSetSize) + +#### Inherited from + +`HTMLElement.ariaSetSize` + +*** + +### ariaSort + +> **ariaSort**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3334 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaSort) + +#### Inherited from + +`HTMLElement.ariaSort` + +*** + +### ariaValueMax + +> **ariaValueMax**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3336 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaValueMax) + +#### Inherited from + +`HTMLElement.ariaValueMax` + +*** + +### ariaValueMin + +> **ariaValueMin**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3338 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaValueMin) + +#### Inherited from + +`HTMLElement.ariaValueMin` + +*** + +### ariaValueNow + +> **ariaValueNow**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3340 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaValueNow) + +#### Inherited from + +`HTMLElement.ariaValueNow` + +*** + +### ariaValueText + +> **ariaValueText**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3342 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaValueText) + +#### Inherited from + +`HTMLElement.ariaValueText` + +*** + +### assignedSlot + +> `readonly` **assignedSlot**: `HTMLSlotElement` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:35365 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/assignedSlot) + +#### Inherited from + +`HTMLElement.assignedSlot` + +*** + +### ATTRIBUTE\_NODE + +> `readonly` **ATTRIBUTE\_NODE**: `2` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26212 + +#### Inherited from + +`HTMLElement.ATTRIBUTE_NODE` + +*** + +### attributes + +> `readonly` **attributes**: `NamedNodeMap` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13514 + +The **`Element.attributes`** property returns a live collection of all attribute nodes registered to the specified node. It is a NamedNodeMap, not an Array, so it has no Array methods and the Attr nodes' indexes may differ among browsers. To be more specific, attributes is a key/value pair of strings that represents any information regarding that attribute. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/attributes) + +#### Inherited from + +`HTMLElement.attributes` + +*** + +### attributeStyleMap + +> `readonly` **attributeStyleMap**: `StylePropertyMap` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13928 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/attributeStyleMap) + +#### Inherited from + +`HTMLElement.attributeStyleMap` + +*** + +### autocapitalize + +> **autocapitalize**: `string` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:17747 + +The **`autocapitalize`** property of the HTMLElement interface represents the element's capitalization behavior for user input. It is available on all HTML elements, though it doesn't affect all of them, including: + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/autocapitalize) + +#### Inherited from + +`HTMLElement.autocapitalize` + +*** + +### autocorrect + +> **autocorrect**: `boolean` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:17753 + +The **`autocorrect`** property of the HTMLElement interface controls whether or not autocorrection of editable text is enabled for spelling and/or punctuation errors. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/autocorrect) + +#### Inherited from + +`HTMLElement.autocorrect` + +*** + +### autofocus + +> **autofocus**: `boolean` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:20122 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/autofocus) + +#### Inherited from + +`HTMLElement.autofocus` + +*** + +### baseURI + +> `readonly` **baseURI**: `string` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26041 + +The read-only **`baseURI`** property of the Node interface returns the absolute base URL of the document containing the node. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/baseURI) + +#### Inherited from + +`HTMLElement.baseURI` + +*** + +### canGoBack + +> **canGoBack**: () => `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserRegistry.ts:22](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserRegistry.ts#L22) + +#### Returns + +`boolean` + +*** + +### canGoForward + +> **canGoForward**: () => `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserRegistry.ts:23](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserRegistry.ts#L23) + +#### Returns + +`boolean` + +*** + +### capturePage + +> **capturePage**: (`rect?`) => `Promise`\<[`ElectronNativeImage`](ElectronNativeImage.md)\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserRegistry.ts:27](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserRegistry.ts#L27) + +#### Parameters + +##### rect? + +###### height + +`number` + +###### width + +`number` + +###### x + +`number` + +###### y + +`number` + +#### Returns + +`Promise`\<[`ElectronNativeImage`](ElectronNativeImage.md)\> + +*** + +### CDATA\_SECTION\_NODE + +> `readonly` **CDATA\_SECTION\_NODE**: `4` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26216 + +node is a CDATASection node. + +#### Inherited from + +`HTMLElement.CDATA_SECTION_NODE` + +*** + +### childElementCount + +> `readonly` **childElementCount**: `number` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:27044 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/childElementCount) + +#### Inherited from + +`HTMLElement.childElementCount` + +*** + +### childNodes + +> `readonly` **childNodes**: `NodeListOf`\<`ChildNode`\> + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26047 + +The read-only **`childNodes`** property of the Node interface returns a live NodeList of child nodes of the given element where the first child node is assigned index 0. Child nodes include elements, text and comments. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/childNodes) + +#### Inherited from + +`HTMLElement.childNodes` + +*** + +### children + +> `readonly` **children**: `HTMLCollection` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:27050 + +Returns the child elements. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/children) + +#### Inherited from + +`HTMLElement.children` + +*** + +### className + +> **className**: `string` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13527 + +The **`className`** property of the Element interface gets and sets the value of the class attribute of the specified element. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/className) + +#### Inherited from + +`HTMLElement.className` + +*** + +### clientHeight + +> `readonly` **clientHeight**: `number` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13533 + +The **`clientHeight`** read-only property of the Element interface is zero for elements with no CSS or inline layout boxes; otherwise, it's the inner height of an element in pixels. It includes padding but excludes borders, margins, and horizontal scrollbars (if present). + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/clientHeight) + +#### Inherited from + +`HTMLElement.clientHeight` + +*** + +### clientLeft + +> `readonly` **clientLeft**: `number` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13539 + +The **`clientLeft`** read-only property of the Element interface returns the width of the left border of an element in pixels. It includes the width of the vertical scrollbar if the text direction of the element is right-to-left and if there is an overflow causing a left vertical scrollbar to be rendered. clientLeft does not include the left margin or the left padding. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/clientLeft) + +#### Inherited from + +`HTMLElement.clientLeft` + +*** + +### clientTop + +> `readonly` **clientTop**: `number` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13545 + +The **`clientTop`** read-only property of the Element interface returns the width of the top border of an element in pixels. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/clientTop) + +#### Inherited from + +`HTMLElement.clientTop` + +*** + +### clientWidth + +> `readonly` **clientWidth**: `number` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13551 + +The **`clientWidth`** read-only property of the Element interface is zero for inline elements and elements with no CSS; otherwise, it's the inner width of an element in pixels. It includes padding but excludes borders, margins, and vertical scrollbars (if present). + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/clientWidth) + +#### Inherited from + +`HTMLElement.clientWidth` + +*** + +### COMMENT\_NODE + +> `readonly` **COMMENT\_NODE**: `8` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26222 + +node is a Comment node. + +#### Inherited from + +`HTMLElement.COMMENT_NODE` + +*** + +### contentEditable + +> **contentEditable**: `string` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13936 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/contentEditable) + +#### Inherited from + +`HTMLElement.contentEditable` + +*** + +### currentCSSZoom + +> `readonly` **currentCSSZoom**: `number` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13557 + +The **`currentCSSZoom`** read-only property of the Element interface provides the "effective" CSS zoom of an element, taking into account the zoom applied to the element and all its parent elements. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/currentCSSZoom) + +#### Inherited from + +`HTMLElement.currentCSSZoom` + +*** + +### customElementRegistry + +> `readonly` **customElementRegistry**: `CustomElementRegistry` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13558 + +#### Inherited from + +`HTMLElement.customElementRegistry` + +*** + +### dataset + +> `readonly` **dataset**: `DOMStringMap` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:20124 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dataset) + +#### Inherited from + +`HTMLElement.dataset` + +*** + +### dir + +> **dir**: `string` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:17759 + +The **`HTMLElement.dir`** property indicates the text writing directionality of the content of the current element. It reflects the element's dir attribute. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dir) + +#### Inherited from + +`HTMLElement.dir` + +*** + +### DOCUMENT\_FRAGMENT\_NODE + +> `readonly` **DOCUMENT\_FRAGMENT\_NODE**: `11` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26228 + +node is a DocumentFragment node. + +#### Inherited from + +`HTMLElement.DOCUMENT_FRAGMENT_NODE` + +*** + +### DOCUMENT\_NODE + +> `readonly` **DOCUMENT\_NODE**: `9` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26224 + +node is a document. + +#### Inherited from + +`HTMLElement.DOCUMENT_NODE` + +*** + +### DOCUMENT\_POSITION\_CONTAINED\_BY + +> `readonly` **DOCUMENT\_POSITION\_CONTAINED\_BY**: `16` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26239 + +Set when other is a descendant of node. + +#### Inherited from + +`HTMLElement.DOCUMENT_POSITION_CONTAINED_BY` + +*** + +### DOCUMENT\_POSITION\_CONTAINS + +> `readonly` **DOCUMENT\_POSITION\_CONTAINS**: `8` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26237 + +Set when other is an ancestor of node. + +#### Inherited from + +`HTMLElement.DOCUMENT_POSITION_CONTAINS` + +*** + +### DOCUMENT\_POSITION\_DISCONNECTED + +> `readonly` **DOCUMENT\_POSITION\_DISCONNECTED**: `1` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26231 + +Set when node and other are not in the same tree. + +#### Inherited from + +`HTMLElement.DOCUMENT_POSITION_DISCONNECTED` + +*** + +### DOCUMENT\_POSITION\_FOLLOWING + +> `readonly` **DOCUMENT\_POSITION\_FOLLOWING**: `4` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26235 + +Set when other is following node. + +#### Inherited from + +`HTMLElement.DOCUMENT_POSITION_FOLLOWING` + +*** + +### DOCUMENT\_POSITION\_IMPLEMENTATION\_SPECIFIC + +> `readonly` **DOCUMENT\_POSITION\_IMPLEMENTATION\_SPECIFIC**: `32` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26240 + +#### Inherited from + +`HTMLElement.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC` + +*** + +### DOCUMENT\_POSITION\_PRECEDING + +> `readonly` **DOCUMENT\_POSITION\_PRECEDING**: `2` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26233 + +Set when other is preceding node. + +#### Inherited from + +`HTMLElement.DOCUMENT_POSITION_PRECEDING` + +*** + +### DOCUMENT\_TYPE\_NODE + +> `readonly` **DOCUMENT\_TYPE\_NODE**: `10` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26226 + +node is a doctype. + +#### Inherited from + +`HTMLElement.DOCUMENT_TYPE_NODE` + +*** + +### draggable + +> **draggable**: `boolean` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:17765 + +The **`draggable`** property of the HTMLElement interface gets and sets a Boolean primitive indicating if the element is draggable. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/draggable) + +#### Inherited from + +`HTMLElement.draggable` + +*** + +### ELEMENT\_NODE + +> `readonly` **ELEMENT\_NODE**: `1` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26211 + +node is an element. + +#### Inherited from + +`HTMLElement.ELEMENT_NODE` + +*** + +### enterKeyHint + +> **enterKeyHint**: `string` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13938 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/enterKeyHint) + +#### Inherited from + +`HTMLElement.enterKeyHint` + +*** + +### ENTITY\_NODE + +> `readonly` **ENTITY\_NODE**: `6` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26218 + +#### Inherited from + +`HTMLElement.ENTITY_NODE` + +*** + +### ENTITY\_REFERENCE\_NODE + +> `readonly` **ENTITY\_REFERENCE\_NODE**: `5` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26217 + +#### Inherited from + +`HTMLElement.ENTITY_REFERENCE_NODE` + +*** + +### executeJavaScript + +> **executeJavaScript**: (`code`) => `Promise`\<`any`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserRegistry.ts:28](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserRegistry.ts#L28) + +#### Parameters + +##### code + +`string` + +#### Returns + +`Promise`\<`any`\> + +*** + +### firstChild + +> `readonly` **firstChild**: `ChildNode` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26053 + +The read-only **`firstChild`** property of the Node interface returns the node's first child in the tree, or null if the node has no children. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/firstChild) + +#### Inherited from + +`HTMLElement.firstChild` + +*** + +### firstElementChild + +> `readonly` **firstElementChild**: `Element` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:27056 + +Returns the first child that is an element, and null otherwise. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/firstElementChild) + +#### Inherited from + +`HTMLElement.firstElementChild` + +*** + +### getTitle + +> **getTitle**: () => `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserRegistry.ts:25](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserRegistry.ts#L25) + +#### Returns + +`string` + +*** + +### getURL + +> **getURL**: () => `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserRegistry.ts:24](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserRegistry.ts#L24) + +#### Returns + +`string` + +*** + +### getWebContentsId + +> **getWebContentsId**: () => `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserRegistry.ts:30](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserRegistry.ts#L30) + +#### Returns + +`number` + +*** + +### goBack + +> **goBack**: () => `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserRegistry.ts:19](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserRegistry.ts#L19) + +#### Returns + +`void` + +*** + +### goForward + +> **goForward**: () => `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserRegistry.ts:20](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserRegistry.ts#L20) + +#### Returns + +`void` + +*** + +### hidden + +> **hidden**: `boolean` \| `"until-found"` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:17771 + +The HTMLElement property **`hidden`** reflects the value of the element's hidden attribute. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/hidden) + +#### Inherited from + +`HTMLElement.hidden` + +*** + +### id + +> **id**: `string` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13564 + +The **`id`** property of the Element interface represents the element's identifier, reflecting the id global attribute. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/id) + +#### Inherited from + +`HTMLElement.id` + +*** + +### inert + +> **inert**: `boolean` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:17777 + +The HTMLElement property **`inert`** reflects the value of the element's inert attribute. It is a boolean value that, when present, makes the browser "ignore" user input events for the element, including focus events and events from assistive technologies. The browser may also ignore page search and text selection in the element. This can be useful when building UIs such as modals where you would want to "trap" the focus inside the modal when it's visible. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/inert) + +#### Inherited from + +`HTMLElement.inert` + +*** + +### innerHTML + +> **innerHTML**: `string` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13570 + +The **`innerHTML`** property of the Element interface gets or sets the HTML or XML markup contained within the element, omitting any shadow roots in both cases. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/innerHTML) + +#### Inherited from + +`HTMLElement.innerHTML` + +*** + +### innerText + +> **innerText**: `string` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:17783 + +The **`innerText`** property of the HTMLElement interface represents the rendered text content of a node and its descendants. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/innerText) + +#### Inherited from + +`HTMLElement.innerText` + +*** + +### inputMode + +> **inputMode**: `string` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13940 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/inputMode) + +#### Inherited from + +`HTMLElement.inputMode` + +*** + +### isConnected + +> `readonly` **isConnected**: `boolean` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26059 + +The read-only **`isConnected`** property of the Node interface returns a boolean indicating whether the node is connected (directly or indirectly) to a Document object. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/isConnected) + +#### Inherited from + +`HTMLElement.isConnected` + +*** + +### isContentEditable + +> `readonly` **isContentEditable**: `boolean` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13942 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/isContentEditable) + +#### Inherited from + +`HTMLElement.isContentEditable` + +*** + +### isLoading + +> **isLoading**: () => `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserRegistry.ts:26](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserRegistry.ts#L26) + +#### Returns + +`boolean` + +*** + +### lang + +> **lang**: `string` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:17789 + +The **`lang`** property of the HTMLElement interface indicates the base language of an element's attribute values and text content, in the form of a BCP 47 language tag. It reflects the element's lang attribute; the xml:lang attribute does not affect this property. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/lang) + +#### Inherited from + +`HTMLElement.lang` + +*** + +### lastChild + +> `readonly` **lastChild**: `ChildNode` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26065 + +The read-only **`lastChild`** property of the Node interface returns the last child of the node, or null if there are no child nodes. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/lastChild) + +#### Inherited from + +`HTMLElement.lastChild` + +*** + +### lastElementChild + +> `readonly` **lastElementChild**: `Element` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:27062 + +Returns the last child that is an element, and null otherwise. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/lastElementChild) + +#### Inherited from + +`HTMLElement.lastElementChild` + +*** + +### loadURL + +> **loadURL**: (`url`) => `Promise`\<`void`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserRegistry.ts:18](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserRegistry.ts#L18) + +#### Parameters + +##### url + +`string` + +#### Returns + +`Promise`\<`void`\> + +*** + +### localName + +> `readonly` **localName**: `string` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13576 + +The **`Element.localName`** read-only property returns the local part of the qualified name of an element. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/localName) + +#### Inherited from + +`HTMLElement.localName` + +*** + +### namespaceURI + +> `readonly` **namespaceURI**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13582 + +The **`Element.namespaceURI`** read-only property returns the namespace URI of the element, or null if the element is not in a namespace. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/namespaceURI) + +#### Inherited from + +`HTMLElement.namespaceURI` + +*** + +### nextElementSibling + +> `readonly` **nextElementSibling**: `Element` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26380 + +Returns the first following sibling that is an element, and null otherwise. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/CharacterData/nextElementSibling) + +#### Inherited from + +`HTMLElement.nextElementSibling` + +*** + +### nextSibling + +> `readonly` **nextSibling**: `ChildNode` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26071 + +The read-only **`nextSibling`** property of the Node interface returns the node immediately following the specified one in their parent's childNodes, or returns null if the specified node is the last child in the parent element. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/nextSibling) + +#### Inherited from + +`HTMLElement.nextSibling` + +*** + +### nodeName + +> `readonly` **nodeName**: `string` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26077 + +The read-only **`nodeName`** property of Node returns the name of the current node as a string. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/nodeName) + +#### Inherited from + +`HTMLElement.nodeName` + +*** + +### nodeType + +> `readonly` **nodeType**: `number` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26083 + +The read-only **`nodeType`** property of a Node interface is an integer that identifies what the node is. It distinguishes different kinds of nodes from each other, such as elements, text, and comments. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/nodeType) + +#### Inherited from + +`HTMLElement.nodeType` + +*** + +### nodeValue + +> **nodeValue**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26089 + +The **`nodeValue`** property of the Node interface returns or sets the value of the current node. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/nodeValue) + +#### Inherited from + +`HTMLElement.nodeValue` + +*** + +### nonce + +> **nonce**: `string` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:20126 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/nonce) + +#### Inherited from + +`HTMLElement.nonce` + +*** + +### NOTATION\_NODE + +> `readonly` **NOTATION\_NODE**: `12` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26229 + +#### Inherited from + +`HTMLElement.NOTATION_NODE` + +*** + +### offsetHeight + +> `readonly` **offsetHeight**: `number` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:17795 + +The **`offsetHeight`** read-only property of the HTMLElement interface returns the height of an element, including vertical padding and borders, as an integer. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/offsetHeight) + +#### Inherited from + +`HTMLElement.offsetHeight` + +*** + +### offsetLeft + +> `readonly` **offsetLeft**: `number` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:17801 + +The **`offsetLeft`** read-only property of the HTMLElement interface returns the number of pixels that the upper left corner of the current element is offset to the left within the HTMLElement.offsetParent node. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/offsetLeft) + +#### Inherited from + +`HTMLElement.offsetLeft` + +*** + +### offsetParent + +> `readonly` **offsetParent**: `Element` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:17807 + +The **`HTMLElement.offsetParent`** read-only property returns a reference to the element which is the closest (nearest in the containment hierarchy) positioned ancestor element. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/offsetParent) + +#### Inherited from + +`HTMLElement.offsetParent` + +*** + +### offsetTop + +> `readonly` **offsetTop**: `number` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:17813 + +The **`offsetTop`** read-only property of the HTMLElement interface returns the distance from the outer border of the current element (including its margin) to the top padding edge of the offsetParent, the closest positioned ancestor element. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/offsetTop) + +#### Inherited from + +`HTMLElement.offsetTop` + +*** + +### offsetWidth + +> `readonly` **offsetWidth**: `number` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:17819 + +The **`offsetWidth`** read-only property of the HTMLElement interface returns the layout width of an element as an integer. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/offsetWidth) + +#### Inherited from + +`HTMLElement.offsetWidth` + +*** + +### onabort + +> **onabort**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16764 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/abort_event) + +#### Inherited from + +`HTMLElement.onabort` + +*** + +### onanimationcancel + +> **onanimationcancel**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16766 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/animationcancel_event) + +#### Inherited from + +`HTMLElement.onanimationcancel` + +*** + +### onanimationend + +> **onanimationend**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16768 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/animationend_event) + +#### Inherited from + +`HTMLElement.onanimationend` + +*** + +### onanimationiteration + +> **onanimationiteration**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16770 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/animationiteration_event) + +#### Inherited from + +`HTMLElement.onanimationiteration` + +*** + +### onanimationstart + +> **onanimationstart**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16772 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/animationstart_event) + +#### Inherited from + +`HTMLElement.onanimationstart` + +*** + +### onauxclick + +> **onauxclick**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16774 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/auxclick_event) + +#### Inherited from + +`HTMLElement.onauxclick` + +*** + +### onbeforeinput + +> **onbeforeinput**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16776 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/beforeinput_event) + +#### Inherited from + +`HTMLElement.onbeforeinput` + +*** + +### onbeforematch + +> **onbeforematch**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16778 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/beforematch_event) + +#### Inherited from + +`HTMLElement.onbeforematch` + +*** + +### onbeforetoggle + +> **onbeforetoggle**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16780 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforetoggle_event) + +#### Inherited from + +`HTMLElement.onbeforetoggle` + +*** + +### onblur + +> **onblur**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16782 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/blur_event) + +#### Inherited from + +`HTMLElement.onblur` + +*** + +### oncancel + +> **oncancel**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16784 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/cancel_event) + +#### Inherited from + +`HTMLElement.oncancel` + +*** + +### oncanplay + +> **oncanplay**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16786 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/canplay_event) + +#### Inherited from + +`HTMLElement.oncanplay` + +*** + +### oncanplaythrough + +> **oncanplaythrough**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16788 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/canplaythrough_event) + +#### Inherited from + +`HTMLElement.oncanplaythrough` + +*** + +### onchange + +> **onchange**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16790 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/change_event) + +#### Inherited from + +`HTMLElement.onchange` + +*** + +### onclick + +> **onclick**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16792 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/click_event) + +#### Inherited from + +`HTMLElement.onclick` + +*** + +### onclose + +> **onclose**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16794 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/close_event) + +#### Inherited from + +`HTMLElement.onclose` + +*** + +### oncommand + +> **oncommand**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16796 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/command_event) + +#### Inherited from + +`HTMLElement.oncommand` + +*** + +### oncontextlost + +> **oncontextlost**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16798 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLCanvasElement/contextlost_event) + +#### Inherited from + +`HTMLElement.oncontextlost` + +*** + +### oncontextmenu + +> **oncontextmenu**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16800 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/contextmenu_event) + +#### Inherited from + +`HTMLElement.oncontextmenu` + +*** + +### oncontextrestored + +> **oncontextrestored**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16802 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLCanvasElement/contextrestored_event) + +#### Inherited from + +`HTMLElement.oncontextrestored` + +*** + +### oncopy + +> **oncopy**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16804 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/copy_event) + +#### Inherited from + +`HTMLElement.oncopy` + +*** + +### oncuechange + +> **oncuechange**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16806 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/cuechange_event) + +#### Inherited from + +`HTMLElement.oncuechange` + +*** + +### oncut + +> **oncut**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16808 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/cut_event) + +#### Inherited from + +`HTMLElement.oncut` + +*** + +### ondblclick + +> **ondblclick**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16810 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/dblclick_event) + +#### Inherited from + +`HTMLElement.ondblclick` + +*** + +### ondrag + +> **ondrag**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16812 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/drag_event) + +#### Inherited from + +`HTMLElement.ondrag` + +*** + +### ondragend + +> **ondragend**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16814 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dragend_event) + +#### Inherited from + +`HTMLElement.ondragend` + +*** + +### ondragenter + +> **ondragenter**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16816 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dragenter_event) + +#### Inherited from + +`HTMLElement.ondragenter` + +*** + +### ondragleave + +> **ondragleave**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16818 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dragleave_event) + +#### Inherited from + +`HTMLElement.ondragleave` + +*** + +### ondragover + +> **ondragover**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16820 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dragover_event) + +#### Inherited from + +`HTMLElement.ondragover` + +*** + +### ondragstart + +> **ondragstart**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16822 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dragstart_event) + +#### Inherited from + +`HTMLElement.ondragstart` + +*** + +### ondrop + +> **ondrop**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16824 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/drop_event) + +#### Inherited from + +`HTMLElement.ondrop` + +*** + +### ondurationchange + +> **ondurationchange**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16826 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/durationchange_event) + +#### Inherited from + +`HTMLElement.ondurationchange` + +*** + +### onemptied + +> **onemptied**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16828 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/emptied_event) + +#### Inherited from + +`HTMLElement.onemptied` + +*** + +### onended + +> **onended**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16830 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/ended_event) + +#### Inherited from + +`HTMLElement.onended` + +*** + +### onerror + +> **onerror**: `OnErrorEventHandler` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16832 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/error_event) + +#### Inherited from + +`HTMLElement.onerror` + +*** + +### onfocus + +> **onfocus**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16834 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/focus_event) + +#### Inherited from + +`HTMLElement.onfocus` + +*** + +### onformdata + +> **onformdata**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16836 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/formdata_event) + +#### Inherited from + +`HTMLElement.onformdata` + +*** + +### onfullscreenchange + +> **onfullscreenchange**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13584 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/fullscreenchange_event) + +#### Inherited from + +`HTMLElement.onfullscreenchange` + +*** + +### onfullscreenerror + +> **onfullscreenerror**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13586 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/fullscreenerror_event) + +#### Inherited from + +`HTMLElement.onfullscreenerror` + +*** + +### ongotpointercapture + +> **ongotpointercapture**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16838 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/gotpointercapture_event) + +#### Inherited from + +`HTMLElement.ongotpointercapture` + +*** + +### oninput + +> **oninput**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16840 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/input_event) + +#### Inherited from + +`HTMLElement.oninput` + +*** + +### oninvalid + +> **oninvalid**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16842 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/invalid_event) + +#### Inherited from + +`HTMLElement.oninvalid` + +*** + +### onkeydown + +> **onkeydown**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16844 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/keydown_event) + +#### Inherited from + +`HTMLElement.onkeydown` + +*** + +### ~~onkeypress~~ + +> **onkeypress**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16850 + +#### Deprecated + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/keypress_event) + +#### Inherited from + +`HTMLElement.onkeypress` + +*** + +### onkeyup + +> **onkeyup**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16852 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/keyup_event) + +#### Inherited from + +`HTMLElement.onkeyup` + +*** + +### onload + +> **onload**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16854 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/load_event) + +#### Inherited from + +`HTMLElement.onload` + +*** + +### onloadeddata + +> **onloadeddata**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16856 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/loadeddata_event) + +#### Inherited from + +`HTMLElement.onloadeddata` + +*** + +### onloadedmetadata + +> **onloadedmetadata**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16858 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/loadedmetadata_event) + +#### Inherited from + +`HTMLElement.onloadedmetadata` + +*** + +### onloadstart + +> **onloadstart**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16860 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/loadstart_event) + +#### Inherited from + +`HTMLElement.onloadstart` + +*** + +### onlostpointercapture + +> **onlostpointercapture**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16862 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/lostpointercapture_event) + +#### Inherited from + +`HTMLElement.onlostpointercapture` + +*** + +### onmousedown + +> **onmousedown**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16864 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/mousedown_event) + +#### Inherited from + +`HTMLElement.onmousedown` + +*** + +### onmouseenter + +> **onmouseenter**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16866 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/mouseenter_event) + +#### Inherited from + +`HTMLElement.onmouseenter` + +*** + +### onmouseleave + +> **onmouseleave**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16868 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/mouseleave_event) + +#### Inherited from + +`HTMLElement.onmouseleave` + +*** + +### onmousemove + +> **onmousemove**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16870 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/mousemove_event) + +#### Inherited from + +`HTMLElement.onmousemove` + +*** + +### onmouseout + +> **onmouseout**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16872 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/mouseout_event) + +#### Inherited from + +`HTMLElement.onmouseout` + +*** + +### onmouseover + +> **onmouseover**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16874 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/mouseover_event) + +#### Inherited from + +`HTMLElement.onmouseover` + +*** + +### onmouseup + +> **onmouseup**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16876 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/mouseup_event) + +#### Inherited from + +`HTMLElement.onmouseup` + +*** + +### onpaste + +> **onpaste**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16878 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/paste_event) + +#### Inherited from + +`HTMLElement.onpaste` + +*** + +### onpause + +> **onpause**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16880 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/pause_event) + +#### Inherited from + +`HTMLElement.onpause` + +*** + +### onplay + +> **onplay**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16882 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/play_event) + +#### Inherited from + +`HTMLElement.onplay` + +*** + +### onplaying + +> **onplaying**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16884 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/playing_event) + +#### Inherited from + +`HTMLElement.onplaying` + +*** + +### onpointercancel + +> **onpointercancel**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16886 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointercancel_event) + +#### Inherited from + +`HTMLElement.onpointercancel` + +*** + +### onpointerdown + +> **onpointerdown**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16888 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerdown_event) + +#### Inherited from + +`HTMLElement.onpointerdown` + +*** + +### onpointerenter + +> **onpointerenter**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16890 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerenter_event) + +#### Inherited from + +`HTMLElement.onpointerenter` + +*** + +### onpointerleave + +> **onpointerleave**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16892 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerleave_event) + +#### Inherited from + +`HTMLElement.onpointerleave` + +*** + +### onpointermove + +> **onpointermove**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16894 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointermove_event) + +#### Inherited from + +`HTMLElement.onpointermove` + +*** + +### onpointerout + +> **onpointerout**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16896 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerout_event) + +#### Inherited from + +`HTMLElement.onpointerout` + +*** + +### onpointerover + +> **onpointerover**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16898 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerover_event) + +#### Inherited from + +`HTMLElement.onpointerover` + +*** + +### onpointerrawupdate + +> **onpointerrawupdate**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16904 + +Available only in secure contexts. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerrawupdate_event) + +#### Inherited from + +`HTMLElement.onpointerrawupdate` + +*** + +### onpointerup + +> **onpointerup**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16906 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/pointerup_event) + +#### Inherited from + +`HTMLElement.onpointerup` + +*** + +### onprogress + +> **onprogress**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16908 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/progress_event) + +#### Inherited from + +`HTMLElement.onprogress` + +*** + +### onratechange + +> **onratechange**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16910 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/ratechange_event) + +#### Inherited from + +`HTMLElement.onratechange` + +*** + +### onreset + +> **onreset**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16912 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/reset_event) + +#### Inherited from + +`HTMLElement.onreset` + +*** + +### onresize + +> **onresize**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16914 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/resize_event) + +#### Inherited from + +`HTMLElement.onresize` + +*** + +### onscroll + +> **onscroll**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16916 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/scroll_event) + +#### Inherited from + +`HTMLElement.onscroll` + +*** + +### onscrollend + +> **onscrollend**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16918 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/scrollend_event) + +#### Inherited from + +`HTMLElement.onscrollend` + +*** + +### onsecuritypolicyviolation + +> **onsecuritypolicyviolation**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16920 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/securitypolicyviolation_event) + +#### Inherited from + +`HTMLElement.onsecuritypolicyviolation` + +*** + +### onseeked + +> **onseeked**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16922 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/seeked_event) + +#### Inherited from + +`HTMLElement.onseeked` + +*** + +### onseeking + +> **onseeking**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16924 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/seeking_event) + +#### Inherited from + +`HTMLElement.onseeking` + +*** + +### onselect + +> **onselect**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16926 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/select_event) + +#### Inherited from + +`HTMLElement.onselect` + +*** + +### onselectionchange + +> **onselectionchange**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16928 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/selectionchange_event) + +#### Inherited from + +`HTMLElement.onselectionchange` + +*** + +### onselectstart + +> **onselectstart**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16930 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/selectstart_event) + +#### Inherited from + +`HTMLElement.onselectstart` + +*** + +### onslotchange + +> **onslotchange**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16932 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSlotElement/slotchange_event) + +#### Inherited from + +`HTMLElement.onslotchange` + +*** + +### onstalled + +> **onstalled**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16934 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/stalled_event) + +#### Inherited from + +`HTMLElement.onstalled` + +*** + +### onsubmit + +> **onsubmit**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16936 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/submit_event) + +#### Inherited from + +`HTMLElement.onsubmit` + +*** + +### onsuspend + +> **onsuspend**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16938 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/suspend_event) + +#### Inherited from + +`HTMLElement.onsuspend` + +*** + +### ontimeupdate + +> **ontimeupdate**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16940 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/timeupdate_event) + +#### Inherited from + +`HTMLElement.ontimeupdate` + +*** + +### ontoggle + +> **ontoggle**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16942 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/toggle_event) + +#### Inherited from + +`HTMLElement.ontoggle` + +*** + +### ontouchcancel? + +> `optional` **ontouchcancel?**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16944 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/touchcancel_event) + +#### Inherited from + +`HTMLElement.ontouchcancel` + +*** + +### ontouchend? + +> `optional` **ontouchend?**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16946 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/touchend_event) + +#### Inherited from + +`HTMLElement.ontouchend` + +*** + +### ontouchmove? + +> `optional` **ontouchmove?**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16948 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/touchmove_event) + +#### Inherited from + +`HTMLElement.ontouchmove` + +*** + +### ontouchstart? + +> `optional` **ontouchstart?**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16950 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/touchstart_event) + +#### Inherited from + +`HTMLElement.ontouchstart` + +*** + +### ontransitioncancel + +> **ontransitioncancel**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16952 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/transitioncancel_event) + +#### Inherited from + +`HTMLElement.ontransitioncancel` + +*** + +### ontransitionend + +> **ontransitionend**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16954 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/transitionend_event) + +#### Inherited from + +`HTMLElement.ontransitionend` + +*** + +### ontransitionrun + +> **ontransitionrun**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16956 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/transitionrun_event) + +#### Inherited from + +`HTMLElement.ontransitionrun` + +*** + +### ontransitionstart + +> **ontransitionstart**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16958 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/transitionstart_event) + +#### Inherited from + +`HTMLElement.ontransitionstart` + +*** + +### onvolumechange + +> **onvolumechange**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16960 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/volumechange_event) + +#### Inherited from + +`HTMLElement.onvolumechange` + +*** + +### onwaiting + +> **onwaiting**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16962 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/waiting_event) + +#### Inherited from + +`HTMLElement.onwaiting` + +*** + +### ~~onwebkitanimationend~~ + +> **onwebkitanimationend**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16968 + +#### Deprecated + +This is a legacy alias of `onanimationend`. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/animationend_event) + +#### Inherited from + +`HTMLElement.onwebkitanimationend` + +*** + +### ~~onwebkitanimationiteration~~ + +> **onwebkitanimationiteration**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16974 + +#### Deprecated + +This is a legacy alias of `onanimationiteration`. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/animationiteration_event) + +#### Inherited from + +`HTMLElement.onwebkitanimationiteration` + +*** + +### ~~onwebkitanimationstart~~ + +> **onwebkitanimationstart**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16980 + +#### Deprecated + +This is a legacy alias of `onanimationstart`. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/animationstart_event) + +#### Inherited from + +`HTMLElement.onwebkitanimationstart` + +*** + +### ~~onwebkittransitionend~~ + +> **onwebkittransitionend**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16986 + +#### Deprecated + +This is a legacy alias of `ontransitionend`. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/transitionend_event) + +#### Inherited from + +`HTMLElement.onwebkittransitionend` + +*** + +### onwheel + +> **onwheel**: ((`this`, `ev`) => `any`) \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:16988 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/wheel_event) + +#### Inherited from + +`HTMLElement.onwheel` + +*** + +### outerHTML + +> **outerHTML**: `string` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13592 + +The **`outerHTML`** attribute of the Element interface gets or sets the HTML or XML markup of the element and its descendants, omitting any shadow roots in both cases. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/outerHTML) + +#### Inherited from + +`HTMLElement.outerHTML` + +*** + +### outerText + +> **outerText**: `string` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:17825 + +The **`outerText`** property of the HTMLElement interface returns the same value as HTMLElement.innerText. When used as a setter it replaces the whole current node with the given text (this differs from innerText, which replaces the content inside the current node). + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/outerText) + +#### Inherited from + +`HTMLElement.outerText` + +*** + +### ownerDocument + +> `readonly` **ownerDocument**: `Document` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13593 + +The read-only **`ownerDocument`** property of the Node interface returns the top-level document object of the node. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/ownerDocument) + +#### Inherited from + +`HTMLElement.ownerDocument` + +*** + +### parentElement + +> `readonly` **parentElement**: `HTMLElement` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26101 + +The read-only **`parentElement`** property of Node interface returns the DOM node's parent Element, or null if the node either has no parent, or its parent isn't a DOM Element. Node.parentNode on the other hand returns any kind of parent, regardless of its type. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/parentElement) + +#### Inherited from + +`HTMLElement.parentElement` + +*** + +### parentNode + +> `readonly` **parentNode**: `ParentNode` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26107 + +The read-only **`parentNode`** property of the Node interface returns the parent of the specified node in the DOM tree. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/parentNode) + +#### Inherited from + +`HTMLElement.parentNode` + +*** + +### popover + +> **popover**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:17831 + +The **`popover`** property of the HTMLElement interface gets and sets an element's popover state via JavaScript ("auto", "hint", or "manual"), and can be used for feature detection. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/popover) + +#### Inherited from + +`HTMLElement.popover` + +*** + +### prefix + +> `readonly` **prefix**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13606 + +The **`Element.prefix`** read-only property returns the namespace prefix of the specified element, or null if no prefix is specified. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/prefix) + +#### Inherited from + +`HTMLElement.prefix` + +*** + +### previousElementSibling + +> `readonly` **previousElementSibling**: `Element` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26386 + +Returns the first preceding sibling that is an element, and null otherwise. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/CharacterData/previousElementSibling) + +#### Inherited from + +`HTMLElement.previousElementSibling` + +*** + +### previousSibling + +> `readonly` **previousSibling**: `ChildNode` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26113 + +The read-only **`previousSibling`** property of the Node interface returns the node immediately preceding the specified one in its parent's childNodes list, or null if the specified node is the first in that list. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/previousSibling) + +#### Inherited from + +`HTMLElement.previousSibling` + +*** + +### PROCESSING\_INSTRUCTION\_NODE + +> `readonly` **PROCESSING\_INSTRUCTION\_NODE**: `7` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26220 + +node is a ProcessingInstruction node. + +#### Inherited from + +`HTMLElement.PROCESSING_INSTRUCTION_NODE` + +*** + +### reload + +> **reload**: () => `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserRegistry.ts:21](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserRegistry.ts#L21) + +#### Returns + +`void` + +*** + +### removeEventListener + +> **removeEventListener**: (`event`, `listener`, `options?`) => `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserRegistry.ts:32](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserRegistry.ts#L32) + +#### Parameters + +##### event + +`string` + +##### listener + +(...`args`) => `void` + +##### options? + +`boolean` \| `EventListenerOptions` + +#### Returns + +`void` + +#### Overrides + +`HTMLElement.removeEventListener` + +*** + +### role + +> **role**: `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3344 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/role) + +#### Inherited from + +`HTMLElement.role` + +*** + +### scrollHeight + +> `readonly` **scrollHeight**: `number` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13612 + +The **`scrollHeight`** read-only property of the Element interface is a measurement of the height of an element's content, including content not visible on the screen due to overflow. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/scrollHeight) + +#### Inherited from + +`HTMLElement.scrollHeight` + +*** + +### scrollLeft + +> **scrollLeft**: `number` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13618 + +The **`scrollLeft`** property of the Element interface gets or sets the number of pixels by which an element's content is scrolled from its left edge. This value is subpixel precise in modern browsers, meaning that it isn't necessarily a whole number. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/scrollLeft) + +#### Inherited from + +`HTMLElement.scrollLeft` + +*** + +### scrollTop + +> **scrollTop**: `number` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13624 + +The **`scrollTop`** property of the Element interface gets or sets the number of pixels by which an element's content is scrolled from its top edge. This value is subpixel precise in modern browsers, meaning that it isn't necessarily a whole number. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/scrollTop) + +#### Inherited from + +`HTMLElement.scrollTop` + +*** + +### scrollWidth + +> `readonly` **scrollWidth**: `number` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13630 + +The **`scrollWidth`** read-only property of the Element interface is a measurement of the width of an element's content, including content not visible on the screen due to overflow. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/scrollWidth) + +#### Inherited from + +`HTMLElement.scrollWidth` + +*** + +### sendInputEvent + +> **sendInputEvent**: (`event`) => `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserRegistry.ts:29](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserRegistry.ts#L29) + +#### Parameters + +##### event + +`any` + +#### Returns + +`void` + +*** + +### shadowRoot + +> `readonly` **shadowRoot**: `ShadowRoot` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13636 + +The **`Element.shadowRoot`** read-only property represents the shadow root hosted by the element. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/shadowRoot) + +#### Inherited from + +`HTMLElement.shadowRoot` + +*** + +### slot + +> **slot**: `string` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13642 + +The **`slot`** property of the Element interface returns the name of the shadow DOM slot the element is inserted in. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/slot) + +#### Inherited from + +`HTMLElement.slot` + +*** + +### spellcheck + +> **spellcheck**: `boolean` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:17837 + +The **`spellcheck`** property of the HTMLElement interface represents a boolean value that controls the spell-checking hint. It is available on all HTML elements, though it doesn't affect all of them. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/spellcheck) + +#### Inherited from + +`HTMLElement.spellcheck` + +*** + +### src + +> **src**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserRegistry.ts:17](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserRegistry.ts#L17) + +*** + +### tabIndex + +> **tabIndex**: `number` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:20128 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/tabIndex) + +#### Inherited from + +`HTMLElement.tabIndex` + +*** + +### tagName + +> `readonly` **tagName**: `string` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13648 + +The **`tagName`** read-only property of the Element interface returns the tag name of the element on which it's called. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/tagName) + +#### Inherited from + +`HTMLElement.tagName` + +*** + +### TEXT\_NODE + +> `readonly` **TEXT\_NODE**: `3` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26214 + +node is a Text node. + +#### Inherited from + +`HTMLElement.TEXT_NODE` + +*** + +### title + +> **title**: `string` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:17843 + +The **`HTMLElement.title`** property represents the title of the element: the text usually displayed in a 'tooltip' popup when the mouse is over the node. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/title) + +#### Inherited from + +`HTMLElement.title` + +*** + +### translate + +> **translate**: `boolean` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:17849 + +The **`translate`** property of the HTMLElement interface indicates whether an element's attribute values and the values of its Text node children are to be translated when the page is localized, or whether to leave them unchanged. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/translate) + +#### Inherited from + +`HTMLElement.translate` + +*** + +### writingSuggestions + +> **writingSuggestions**: `string` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:17855 + +The **`writingSuggestions`** property of the HTMLElement interface is a string indicating if browser-provided writing suggestions should be enabled under the scope of the element or not. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/writingSuggestions) + +#### Inherited from + +`HTMLElement.writingSuggestions` + +## Accessors + +### classList + +#### Get Signature + +> **get** **classList**(): `DOMTokenList` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13520 + +The read-only **`classList`** property of the Element interface contains a live DOMTokenList collection representing the class attribute of the element. This can then be used to manipulate the class list. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/classList) + +##### Returns + +`DOMTokenList` + +#### Set Signature + +> **set** **classList**(`value`): `void` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13521 + +##### Parameters + +###### value + +`string` + +##### Returns + +`void` + +#### Inherited from + +`HTMLElement.classList` + +*** + +### part + +#### Get Signature + +> **get** **part**(): `DOMTokenList` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13599 + +The read-only **`part`** property of the Element interface contains a DOMTokenList object representing the part identifier(s) of the element. It reflects the element's part content attribute. These can be used to style parts of a shadow DOM, via the ::part pseudo-element. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/part) + +##### Returns + +`DOMTokenList` + +#### Set Signature + +> **set** **part**(`value`): `void` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13600 + +##### Parameters + +###### value + +`string` + +##### Returns + +`void` + +#### Inherited from + +`HTMLElement.part` + +*** + +### style + +#### Get Signature + +> **get** **style**(): `CSSStyleDeclaration` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13930 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/style) + +##### Returns + +`CSSStyleDeclaration` + +#### Set Signature + +> **set** **style**(`cssText`): `void` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13931 + +##### Parameters + +###### cssText + +`string` + +##### Returns + +`void` + +#### Inherited from + +`HTMLElement.style` + +*** + +### textContent + +#### Get Signature + +> **get** **textContent**(): `string` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13913 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/textContent) + +##### Returns + +`string` + +#### Set Signature + +> **set** **textContent**(`value`): `void` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13914 + +The **`textContent`** property of the Node interface represents the text content of the node and its descendants. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/textContent) + +##### Parameters + +###### value + +`string` \| `null` + +##### Returns + +`void` + +#### Inherited from + +`HTMLElement.textContent` + +## Methods + +### after() + +> **after**(...`nodes`): `void` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:10657 + +Inserts nodes just after node, while replacing strings in nodes with equivalent Text nodes. + +Throws a "HierarchyRequestError" DOMException if the constraints of the node tree are violated. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/CharacterData/after) + +#### Parameters + +##### nodes + +...(`string` \| `Node`)[] + +#### Returns + +`void` + +#### Inherited from + +`HTMLElement.after` + +*** + +### animate() + +> **animate**(`keyframes`, `options?`): `Animation` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3556 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/animate) + +#### Parameters + +##### keyframes + +`Keyframe`[] \| `PropertyIndexedKeyframes` \| `null` + +##### options? + +`number` \| `KeyframeAnimationOptions` + +#### Returns + +`Animation` + +#### Inherited from + +`HTMLElement.animate` + +*** + +### append() + +> **append**(...`nodes`): `void` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:27070 + +Inserts nodes after the last child of node, while replacing strings in nodes with equivalent Text nodes. + +Throws a "HierarchyRequestError" DOMException if the constraints of the node tree are violated. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/append) + +#### Parameters + +##### nodes + +...(`string` \| `Node`)[] + +#### Returns + +`void` + +#### Inherited from + +`HTMLElement.append` + +*** + +### appendChild() + +> **appendChild**\<`T`\>(`node`): `T` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26125 + +The **`appendChild()`** method of the Node interface adds a node to the end of the list of children of a specified parent node. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/appendChild) + +#### Type Parameters + +##### T + +`T` *extends* `Node` + +#### Parameters + +##### node + +`T` + +#### Returns + +`T` + +#### Inherited from + +`HTMLElement.appendChild` + +*** + +### attachInternals() + +> **attachInternals**(): `ElementInternals` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:17861 + +The **`HTMLElement.attachInternals()`** method returns an ElementInternals object. This method allows a custom element to participate in HTML forms. The ElementInternals interface provides utilities for working with these elements in the same way you would work with any standard HTML form element, and also exposes the Accessibility Object Model to the element. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/attachInternals) + +#### Returns + +`ElementInternals` + +#### Inherited from + +`HTMLElement.attachInternals` + +*** + +### attachShadow() + +> **attachShadow**(`init`): `ShadowRoot` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13654 + +The **`Element.attachShadow()`** method attaches a shadow DOM tree to the specified element and returns a reference to its ShadowRoot. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/attachShadow) + +#### Parameters + +##### init + +`ShadowRootInit` + +#### Returns + +`ShadowRoot` + +#### Inherited from + +`HTMLElement.attachShadow` + +*** + +### before() + +> **before**(...`nodes`): `void` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:10665 + +Inserts nodes just before node, while replacing strings in nodes with equivalent Text nodes. + +Throws a "HierarchyRequestError" DOMException if the constraints of the node tree are violated. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/CharacterData/before) + +#### Parameters + +##### nodes + +...(`string` \| `Node`)[] + +#### Returns + +`void` + +#### Inherited from + +`HTMLElement.before` + +*** + +### blur() + +> **blur**(): `void` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:20130 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/blur) + +#### Returns + +`void` + +#### Inherited from + +`HTMLElement.blur` + +*** + +### checkVisibility() + +> **checkVisibility**(`options?`): `boolean` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13660 + +The **`checkVisibility()`** method of the Element interface checks whether the element is visible. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/checkVisibility) + +#### Parameters + +##### options? + +`CheckVisibilityOptions` + +#### Returns + +`boolean` + +#### Inherited from + +`HTMLElement.checkVisibility` + +*** + +### click() + +> **click**(): `void` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:17867 + +The **`HTMLElement.click()`** method simulates a mouse click on an element. When called on an element, the element's click event is fired (unless its disabled attribute is set). + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/click) + +#### Returns + +`void` + +#### Inherited from + +`HTMLElement.click` + +*** + +### cloneNode() + +> **cloneNode**(`subtree?`): `Node` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26131 + +The **`cloneNode()`** method of the Node interface returns a duplicate of the node on which this method was called. Its parameter controls if the subtree contained in the node is also cloned or not. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/cloneNode) + +#### Parameters + +##### subtree? + +`boolean` + +#### Returns + +`Node` + +#### Inherited from + +`HTMLElement.cloneNode` + +*** + +### closest() + +#### Call Signature + +> **closest**\<`K`\>(`selector`): `HTMLElementTagNameMap`\[`K`\] \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13666 + +The **`closest()`** method of the Element interface traverses the element and its parents (heading toward the document root) until it finds a node that matches the specified CSS selector. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/closest) + +##### Type Parameters + +###### K + +`K` *extends* keyof `HTMLElementTagNameMap` + +##### Parameters + +###### selector + +`K` + +##### Returns + +`HTMLElementTagNameMap`\[`K`\] \| `null` + +##### Inherited from + +`HTMLElement.closest` + +#### Call Signature + +> **closest**\<`K`\>(`selector`): `SVGElementTagNameMap`\[`K`\] \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13667 + +##### Type Parameters + +###### K + +`K` *extends* keyof `SVGElementTagNameMap` + +##### Parameters + +###### selector + +`K` + +##### Returns + +`SVGElementTagNameMap`\[`K`\] \| `null` + +##### Inherited from + +`HTMLElement.closest` + +#### Call Signature + +> **closest**\<`K`\>(`selector`): `MathMLElementTagNameMap`\[`K`\] \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13668 + +##### Type Parameters + +###### K + +`K` *extends* keyof `MathMLElementTagNameMap` + +##### Parameters + +###### selector + +`K` + +##### Returns + +`MathMLElementTagNameMap`\[`K`\] \| `null` + +##### Inherited from + +`HTMLElement.closest` + +#### Call Signature + +> **closest**\<`E`\>(`selectors`): `E` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13669 + +##### Type Parameters + +###### E + +`E` *extends* `Element` = `Element` + +##### Parameters + +###### selectors + +`string` + +##### Returns + +`E` \| `null` + +##### Inherited from + +`HTMLElement.closest` + +*** + +### compareDocumentPosition() + +> **compareDocumentPosition**(`other`): `number` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26137 + +The **`compareDocumentPosition()`** method of the Node interface reports the position of its argument node relative to the node on which it is called. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/compareDocumentPosition) + +#### Parameters + +##### other + +`Node` + +#### Returns + +`number` + +#### Inherited from + +`HTMLElement.compareDocumentPosition` + +*** + +### computedStyleMap() + +> **computedStyleMap**(): `StylePropertyMapReadOnly` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13675 + +The **`computedStyleMap()`** method of the Element interface returns a StylePropertyMapReadOnly interface which provides a read-only representation of a CSS declaration block that is an alternative to CSSStyleDeclaration. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/computedStyleMap) + +#### Returns + +`StylePropertyMapReadOnly` + +#### Inherited from + +`HTMLElement.computedStyleMap` + +*** + +### contains() + +> **contains**(`other`): `boolean` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26143 + +The **`contains()`** method of the Node interface returns a boolean value indicating whether a node is a descendant of a given node, that is the node itself, one of its direct children (childNodes), one of the children's direct children, and so on. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/contains) + +#### Parameters + +##### other + +`Node` \| `null` + +#### Returns + +`boolean` + +#### Inherited from + +`HTMLElement.contains` + +*** + +### dispatchEvent() + +> **dispatchEvent**(`event`): `boolean` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:14386 + +The **`dispatchEvent()`** method of the EventTarget sends an Event to the object, (synchronously) invoking the affected event listeners in the appropriate order. The normal event processing rules (including the capturing and optional bubbling phase) also apply to events dispatched manually with dispatchEvent(). + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/EventTarget/dispatchEvent) + +#### Parameters + +##### event + +`Event` + +#### Returns + +`boolean` + +#### Inherited from + +`HTMLElement.dispatchEvent` + +*** + +### focus() + +> **focus**(`options?`): `void` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:20132 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/focus) + +#### Parameters + +##### options? + +`FocusOptions` + +#### Returns + +`void` + +#### Inherited from + +`HTMLElement.focus` + +*** + +### getAnimations() + +> **getAnimations**(`options?`): `Animation`[] + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:3558 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getAnimations) + +#### Parameters + +##### options? + +`GetAnimationsOptions` + +#### Returns + +`Animation`[] + +#### Inherited from + +`HTMLElement.getAnimations` + +*** + +### getAttribute() + +> **getAttribute**(`qualifiedName`): `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13681 + +The **`getAttribute()`** method of the Element interface returns the value of a specified attribute on the element. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getAttribute) + +#### Parameters + +##### qualifiedName + +`string` + +#### Returns + +`string` \| `null` + +#### Inherited from + +`HTMLElement.getAttribute` + +*** + +### getAttributeNames() + +> **getAttributeNames**(): `string`[] + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13693 + +The **`getAttributeNames()`** method of the Element interface returns the attribute names of the element as an Array of strings. If the element has no attributes it returns an empty array. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getAttributeNames) + +#### Returns + +`string`[] + +#### Inherited from + +`HTMLElement.getAttributeNames` + +*** + +### getAttributeNode() + +> **getAttributeNode**(`qualifiedName`): `Attr` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13699 + +Returns the specified attribute of the specified element, as an Attr node. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getAttributeNode) + +#### Parameters + +##### qualifiedName + +`string` + +#### Returns + +`Attr` \| `null` + +#### Inherited from + +`HTMLElement.getAttributeNode` + +*** + +### getAttributeNodeNS() + +> **getAttributeNodeNS**(`namespace`, `localName`): `Attr` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13705 + +The **`getAttributeNodeNS()`** method of the Element interface returns the namespaced Attr node of an element. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getAttributeNodeNS) + +#### Parameters + +##### namespace + +`string` \| `null` + +##### localName + +`string` + +#### Returns + +`Attr` \| `null` + +#### Inherited from + +`HTMLElement.getAttributeNodeNS` + +*** + +### getAttributeNS() + +> **getAttributeNS**(`namespace`, `localName`): `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13687 + +The **`getAttributeNS()`** method of the Element interface returns the string value of the attribute with the specified namespace and name. If the named attribute does not exist, the value returned will either be null or "" (the empty string); see Notes for details. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getAttributeNS) + +#### Parameters + +##### namespace + +`string` \| `null` + +##### localName + +`string` + +#### Returns + +`string` \| `null` + +#### Inherited from + +`HTMLElement.getAttributeNS` + +*** + +### getBoundingClientRect() + +> **getBoundingClientRect**(): `DOMRect` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13711 + +The **`Element.getBoundingClientRect()`** method returns a DOMRect object providing information about the size of an element and its position relative to the viewport. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getBoundingClientRect) + +#### Returns + +`DOMRect` + +#### Inherited from + +`HTMLElement.getBoundingClientRect` + +*** + +### getClientRects() + +> **getClientRects**(): `DOMRectList` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13717 + +The **`getClientRects()`** method of the Element interface returns a collection of DOMRect objects that indicate the bounding rectangles for each CSS border box in a client. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getClientRects) + +#### Returns + +`DOMRectList` + +#### Inherited from + +`HTMLElement.getClientRects` + +*** + +### getElementsByClassName() + +> **getElementsByClassName**(`classNames`): `HTMLCollectionOf`\<`Element`\> + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13723 + +The Element method **`getElementsByClassName()`** returns a live HTMLCollection which contains every descendant element which has the specified class name or names. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getElementsByClassName) + +#### Parameters + +##### classNames + +`string` + +#### Returns + +`HTMLCollectionOf`\<`Element`\> + +#### Inherited from + +`HTMLElement.getElementsByClassName` + +*** + +### getElementsByTagName() + +#### Call Signature + +> **getElementsByTagName**\<`K`\>(`qualifiedName`): `HTMLCollectionOf`\<`HTMLElementTagNameMap`\[`K`\]\> + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13729 + +The **`Element.getElementsByTagName()`** method returns a live HTMLCollection of elements with the given tag name. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getElementsByTagName) + +##### Type Parameters + +###### K + +`K` *extends* keyof `HTMLElementTagNameMap` + +##### Parameters + +###### qualifiedName + +`K` + +##### Returns + +`HTMLCollectionOf`\<`HTMLElementTagNameMap`\[`K`\]\> + +##### Inherited from + +`HTMLElement.getElementsByTagName` + +#### Call Signature + +> **getElementsByTagName**\<`K`\>(`qualifiedName`): `HTMLCollectionOf`\<`SVGElementTagNameMap`\[`K`\]\> + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13730 + +##### Type Parameters + +###### K + +`K` *extends* keyof `SVGElementTagNameMap` + +##### Parameters + +###### qualifiedName + +`K` + +##### Returns + +`HTMLCollectionOf`\<`SVGElementTagNameMap`\[`K`\]\> + +##### Inherited from + +`HTMLElement.getElementsByTagName` + +#### Call Signature + +> **getElementsByTagName**\<`K`\>(`qualifiedName`): `HTMLCollectionOf`\<`MathMLElementTagNameMap`\[`K`\]\> + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13731 + +##### Type Parameters + +###### K + +`K` *extends* keyof `MathMLElementTagNameMap` + +##### Parameters + +###### qualifiedName + +`K` + +##### Returns + +`HTMLCollectionOf`\<`MathMLElementTagNameMap`\[`K`\]\> + +##### Inherited from + +`HTMLElement.getElementsByTagName` + +#### Call Signature + +> **getElementsByTagName**\<`K`\>(`qualifiedName`): `HTMLCollectionOf`\<`HTMLElementDeprecatedTagNameMap`\[`K`\]\> + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13733 + +##### Type Parameters + +###### K + +`K` *extends* keyof `HTMLElementDeprecatedTagNameMap` + +##### Parameters + +###### qualifiedName + +`K` + +##### Returns + +`HTMLCollectionOf`\<`HTMLElementDeprecatedTagNameMap`\[`K`\]\> + +##### Deprecated + +##### Inherited from + +`HTMLElement.getElementsByTagName` + +#### Call Signature + +> **getElementsByTagName**(`qualifiedName`): `HTMLCollectionOf`\<`Element`\> + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13734 + +##### Parameters + +###### qualifiedName + +`string` + +##### Returns + +`HTMLCollectionOf`\<`Element`\> + +##### Inherited from + +`HTMLElement.getElementsByTagName` + +*** + +### getElementsByTagNameNS() + +#### Call Signature + +> **getElementsByTagNameNS**(`namespaceURI`, `localName`): `HTMLCollectionOf`\<`HTMLElement`\> + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13740 + +The **`Element.getElementsByTagNameNS()`** method returns a live HTMLCollection of elements with the given tag name belonging to the given namespace. It is similar to Document.getElementsByTagNameNS, except that its search is restricted to descendants of the specified element. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getElementsByTagNameNS) + +##### Parameters + +###### namespaceURI + +`"http://www.w3.org/1999/xhtml"` + +###### localName + +`string` + +##### Returns + +`HTMLCollectionOf`\<`HTMLElement`\> + +##### Inherited from + +`HTMLElement.getElementsByTagNameNS` + +#### Call Signature + +> **getElementsByTagNameNS**(`namespaceURI`, `localName`): `HTMLCollectionOf`\<`SVGElement`\> + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13741 + +##### Parameters + +###### namespaceURI + +`"http://www.w3.org/2000/svg"` + +###### localName + +`string` + +##### Returns + +`HTMLCollectionOf`\<`SVGElement`\> + +##### Inherited from + +`HTMLElement.getElementsByTagNameNS` + +#### Call Signature + +> **getElementsByTagNameNS**(`namespaceURI`, `localName`): `HTMLCollectionOf`\<`MathMLElement`\> + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13742 + +##### Parameters + +###### namespaceURI + +`"http://www.w3.org/1998/Math/MathML"` + +###### localName + +`string` + +##### Returns + +`HTMLCollectionOf`\<`MathMLElement`\> + +##### Inherited from + +`HTMLElement.getElementsByTagNameNS` + +#### Call Signature + +> **getElementsByTagNameNS**(`namespace`, `localName`): `HTMLCollectionOf`\<`Element`\> + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13743 + +##### Parameters + +###### namespace + +`string` \| `null` + +###### localName + +`string` + +##### Returns + +`HTMLCollectionOf`\<`Element`\> + +##### Inherited from + +`HTMLElement.getElementsByTagNameNS` + +*** + +### getHTML() + +> **getHTML**(`options?`): `string` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13749 + +The **`getHTML()`** method of the Element interface is used to serialize an element's DOM to an HTML string. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getHTML) + +#### Parameters + +##### options? + +`GetHTMLOptions` + +#### Returns + +`string` + +#### Inherited from + +`HTMLElement.getHTML` + +*** + +### getRootNode() + +> **getRootNode**(`options?`): `Node` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26149 + +The **`getRootNode()`** method of the Node interface returns the context object's root, which optionally includes the shadow root if it is available. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/getRootNode) + +#### Parameters + +##### options? + +`GetRootNodeOptions` + +#### Returns + +`Node` + +#### Inherited from + +`HTMLElement.getRootNode` + +*** + +### hasAttribute() + +> **hasAttribute**(`qualifiedName`): `boolean` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13755 + +The **`Element.hasAttribute()`** method returns a Boolean value indicating whether the specified element has the specified attribute or not. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/hasAttribute) + +#### Parameters + +##### qualifiedName + +`string` + +#### Returns + +`boolean` + +#### Inherited from + +`HTMLElement.hasAttribute` + +*** + +### hasAttributeNS() + +> **hasAttributeNS**(`namespace`, `localName`): `boolean` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13761 + +The **`hasAttributeNS()`** method of the Element interface returns a boolean value indicating whether the current element has the specified attribute with the specified namespace. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/hasAttributeNS) + +#### Parameters + +##### namespace + +`string` \| `null` + +##### localName + +`string` + +#### Returns + +`boolean` + +#### Inherited from + +`HTMLElement.hasAttributeNS` + +*** + +### hasAttributes() + +> **hasAttributes**(): `boolean` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13767 + +The **`hasAttributes()`** method of the Element interface returns a boolean value indicating whether the current element has any attributes or not. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/hasAttributes) + +#### Returns + +`boolean` + +#### Inherited from + +`HTMLElement.hasAttributes` + +*** + +### hasChildNodes() + +> **hasChildNodes**(): `boolean` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26155 + +The **`hasChildNodes()`** method of the Node interface returns a boolean value indicating whether the given Node has child nodes or not. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/hasChildNodes) + +#### Returns + +`boolean` + +#### Inherited from + +`HTMLElement.hasChildNodes` + +*** + +### hasPointerCapture() + +> **hasPointerCapture**(`pointerId`): `boolean` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13773 + +The **`hasPointerCapture()`** method of the Element interface checks whether the element on which it is invoked has pointer capture for the pointer identified by the given pointer ID. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/hasPointerCapture) + +#### Parameters + +##### pointerId + +`number` + +#### Returns + +`boolean` + +#### Inherited from + +`HTMLElement.hasPointerCapture` + +*** + +### hidePopover() + +> **hidePopover**(): `void` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:17873 + +The **`hidePopover()`** method of the HTMLElement interface hides a popover element (i.e., one that has a valid popover attribute) by removing it from the top layer and styling it with display: none. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/hidePopover) + +#### Returns + +`void` + +#### Inherited from + +`HTMLElement.hidePopover` + +*** + +### insertAdjacentElement() + +> **insertAdjacentElement**(`where`, `element`): `Element` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13779 + +The **`insertAdjacentElement()`** method of the Element interface inserts a given element node at a given position relative to the element it is invoked upon. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/insertAdjacentElement) + +#### Parameters + +##### where + +`InsertPosition` + +##### element + +`Element` + +#### Returns + +`Element` \| `null` + +#### Inherited from + +`HTMLElement.insertAdjacentElement` + +*** + +### insertAdjacentHTML() + +> **insertAdjacentHTML**(`position`, `string`): `void` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13785 + +The **`insertAdjacentHTML()`** method of the Element interface parses the specified input as HTML or XML and inserts the resulting nodes into the DOM tree at a specified position. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/insertAdjacentHTML) + +#### Parameters + +##### position + +`InsertPosition` + +##### string + +`string` + +#### Returns + +`void` + +#### Inherited from + +`HTMLElement.insertAdjacentHTML` + +*** + +### insertAdjacentText() + +> **insertAdjacentText**(`where`, `data`): `void` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13791 + +The **`insertAdjacentText()`** method of the Element interface, given a relative position and a string, inserts a new text node at the given position relative to the element it is called from. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/insertAdjacentText) + +#### Parameters + +##### where + +`InsertPosition` + +##### data + +`string` + +#### Returns + +`void` + +#### Inherited from + +`HTMLElement.insertAdjacentText` + +*** + +### insertBefore() + +> **insertBefore**\<`T`\>(`node`, `child`): `T` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26161 + +The **`insertBefore()`** method of the Node interface inserts a node before a reference node as a child of a specified parent node. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/insertBefore) + +#### Type Parameters + +##### T + +`T` *extends* `Node` + +#### Parameters + +##### node + +`T` + +##### child + +`Node` \| `null` + +#### Returns + +`T` + +#### Inherited from + +`HTMLElement.insertBefore` + +*** + +### isDefaultNamespace() + +> **isDefaultNamespace**(`namespace`): `boolean` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26167 + +The **`isDefaultNamespace()`** method of the Node interface accepts a namespace URI as an argument. It returns a boolean value that is true if the namespace is the default namespace on the given node and false if not. The default namespace can be retrieved with Node.lookupNamespaceURI() by passing null as the argument. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/isDefaultNamespace) + +#### Parameters + +##### namespace + +`string` \| `null` + +#### Returns + +`boolean` + +#### Inherited from + +`HTMLElement.isDefaultNamespace` + +*** + +### isEqualNode() + +> **isEqualNode**(`otherNode`): `boolean` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26173 + +The **`isEqualNode()`** method of the Node interface tests whether two nodes are equal. Two nodes are equal when they have the same type, defining characteristics (for elements, this would be their ID, number of children, and so forth), its attributes match, and so on. The specific set of data points that must match varies depending on the types of the nodes. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/isEqualNode) + +#### Parameters + +##### otherNode + +`Node` \| `null` + +#### Returns + +`boolean` + +#### Inherited from + +`HTMLElement.isEqualNode` + +*** + +### isSameNode() + +> **isSameNode**(`otherNode`): `boolean` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26179 + +The **`isSameNode()`** method of the Node interface is a legacy alias the for the === strict equality operator. That is, it tests whether two nodes are the same (in other words, whether they reference the same object). + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/isSameNode) + +#### Parameters + +##### otherNode + +`Node` \| `null` + +#### Returns + +`boolean` + +#### Inherited from + +`HTMLElement.isSameNode` + +*** + +### lookupNamespaceURI() + +> **lookupNamespaceURI**(`prefix`): `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26185 + +The **`lookupNamespaceURI()`** method of the Node interface takes a prefix as parameter and returns the namespace URI associated with it on the given node if found (and null if not). This method's existence allows Node objects to be passed as a namespace resolver to XPathEvaluator.createExpression() and XPathEvaluator.evaluate(). + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/lookupNamespaceURI) + +#### Parameters + +##### prefix + +`string` \| `null` + +#### Returns + +`string` \| `null` + +#### Inherited from + +`HTMLElement.lookupNamespaceURI` + +*** + +### lookupPrefix() + +> **lookupPrefix**(`namespace`): `string` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26191 + +The **`lookupPrefix()`** method of the Node interface returns a string containing the prefix for a given namespace URI, if present, and null if not. When multiple prefixes are possible, the first prefix is returned. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/lookupPrefix) + +#### Parameters + +##### namespace + +`string` \| `null` + +#### Returns + +`string` \| `null` + +#### Inherited from + +`HTMLElement.lookupPrefix` + +*** + +### matches() + +#### Call Signature + +> **matches**\<`K`\>(`selectors`): `this is HTMLElementTagNameMap[K]` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13797 + +The **`matches()`** method of the Element interface tests whether the element would be selected by the specified CSS selector. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/matches) + +##### Type Parameters + +###### K + +`K` *extends* keyof `HTMLElementTagNameMap` + +##### Parameters + +###### selectors + +`K` + +##### Returns + +`this is HTMLElementTagNameMap[K]` + +##### Inherited from + +`HTMLElement.matches` + +#### Call Signature + +> **matches**\<`K`\>(`selectors`): `this is SVGElementTagNameMap[K]` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13798 + +##### Type Parameters + +###### K + +`K` *extends* keyof `SVGElementTagNameMap` + +##### Parameters + +###### selectors + +`K` + +##### Returns + +`this is SVGElementTagNameMap[K]` + +##### Inherited from + +`HTMLElement.matches` + +#### Call Signature + +> **matches**\<`K`\>(`selectors`): `this is MathMLElementTagNameMap[K]` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13799 + +##### Type Parameters + +###### K + +`K` *extends* keyof `MathMLElementTagNameMap` + +##### Parameters + +###### selectors + +`K` + +##### Returns + +`this is MathMLElementTagNameMap[K]` + +##### Inherited from + +`HTMLElement.matches` + +#### Call Signature + +> **matches**(`selectors`): `boolean` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13800 + +##### Parameters + +###### selectors + +`string` + +##### Returns + +`boolean` + +##### Inherited from + +`HTMLElement.matches` + +*** + +### moveBefore() + +> **moveBefore**(`node`, `child`): `void` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:27072 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/moveBefore) + +#### Parameters + +##### node + +`Node` + +##### child + +`Node` \| `null` + +#### Returns + +`void` + +#### Inherited from + +`HTMLElement.moveBefore` + +*** + +### normalize() + +> **normalize**(): `void` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26197 + +The **`normalize()`** method of the Node interface puts the specified node and all of its sub-tree into a normalized form. In a normalized sub-tree, no text nodes in the sub-tree are empty and there are no adjacent text nodes. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/normalize) + +#### Returns + +`void` + +#### Inherited from + +`HTMLElement.normalize` + +*** + +### prepend() + +> **prepend**(...`nodes`): `void` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:27080 + +Inserts nodes before the first child of node, while replacing strings in nodes with equivalent Text nodes. + +Throws a "HierarchyRequestError" DOMException if the constraints of the node tree are violated. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/prepend) + +#### Parameters + +##### nodes + +...(`string` \| `Node`)[] + +#### Returns + +`void` + +#### Inherited from + +`HTMLElement.prepend` + +*** + +### querySelector() + +#### Call Signature + +> **querySelector**\<`K`\>(`selectors`): `HTMLElementTagNameMap`\[`K`\] \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:27086 + +Returns the first element that is a descendant of node that matches selectors. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/querySelector) + +##### Type Parameters + +###### K + +`K` *extends* keyof `HTMLElementTagNameMap` + +##### Parameters + +###### selectors + +`K` + +##### Returns + +`HTMLElementTagNameMap`\[`K`\] \| `null` + +##### Inherited from + +`HTMLElement.querySelector` + +#### Call Signature + +> **querySelector**\<`K`\>(`selectors`): `SVGElementTagNameMap`\[`K`\] \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:27087 + +##### Type Parameters + +###### K + +`K` *extends* keyof `SVGElementTagNameMap` + +##### Parameters + +###### selectors + +`K` + +##### Returns + +`SVGElementTagNameMap`\[`K`\] \| `null` + +##### Inherited from + +`HTMLElement.querySelector` + +#### Call Signature + +> **querySelector**\<`K`\>(`selectors`): `MathMLElementTagNameMap`\[`K`\] \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:27088 + +##### Type Parameters + +###### K + +`K` *extends* keyof `MathMLElementTagNameMap` + +##### Parameters + +###### selectors + +`K` + +##### Returns + +`MathMLElementTagNameMap`\[`K`\] \| `null` + +##### Inherited from + +`HTMLElement.querySelector` + +#### Call Signature + +> **querySelector**\<`K`\>(`selectors`): `HTMLElementDeprecatedTagNameMap`\[`K`\] \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:27090 + +##### Type Parameters + +###### K + +`K` *extends* keyof `HTMLElementDeprecatedTagNameMap` + +##### Parameters + +###### selectors + +`K` + +##### Returns + +`HTMLElementDeprecatedTagNameMap`\[`K`\] \| `null` + +##### Deprecated + +##### Inherited from + +`HTMLElement.querySelector` + +#### Call Signature + +> **querySelector**\<`E`\>(`selectors`): `E` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:27091 + +##### Type Parameters + +###### E + +`E` *extends* `Element` = `Element` + +##### Parameters + +###### selectors + +`string` + +##### Returns + +`E` \| `null` + +##### Inherited from + +`HTMLElement.querySelector` + +*** + +### querySelectorAll() + +#### Call Signature + +> **querySelectorAll**\<`K`\>(`selectors`): `NodeListOf`\<`HTMLElementTagNameMap`\[`K`\]\> + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:27097 + +Returns all element descendants of node that match selectors. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/querySelectorAll) + +##### Type Parameters + +###### K + +`K` *extends* keyof `HTMLElementTagNameMap` + +##### Parameters + +###### selectors + +`K` + +##### Returns + +`NodeListOf`\<`HTMLElementTagNameMap`\[`K`\]\> + +##### Inherited from + +`HTMLElement.querySelectorAll` + +#### Call Signature + +> **querySelectorAll**\<`K`\>(`selectors`): `NodeListOf`\<`SVGElementTagNameMap`\[`K`\]\> + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:27098 + +##### Type Parameters + +###### K + +`K` *extends* keyof `SVGElementTagNameMap` + +##### Parameters + +###### selectors + +`K` + +##### Returns + +`NodeListOf`\<`SVGElementTagNameMap`\[`K`\]\> + +##### Inherited from + +`HTMLElement.querySelectorAll` + +#### Call Signature + +> **querySelectorAll**\<`K`\>(`selectors`): `NodeListOf`\<`MathMLElementTagNameMap`\[`K`\]\> + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:27099 + +##### Type Parameters + +###### K + +`K` *extends* keyof `MathMLElementTagNameMap` + +##### Parameters + +###### selectors + +`K` + +##### Returns + +`NodeListOf`\<`MathMLElementTagNameMap`\[`K`\]\> + +##### Inherited from + +`HTMLElement.querySelectorAll` + +#### Call Signature + +> **querySelectorAll**\<`K`\>(`selectors`): `NodeListOf`\<`HTMLElementDeprecatedTagNameMap`\[`K`\]\> + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:27101 + +##### Type Parameters + +###### K + +`K` *extends* keyof `HTMLElementDeprecatedTagNameMap` + +##### Parameters + +###### selectors + +`K` + +##### Returns + +`NodeListOf`\<`HTMLElementDeprecatedTagNameMap`\[`K`\]\> + +##### Deprecated + +##### Inherited from + +`HTMLElement.querySelectorAll` + +#### Call Signature + +> **querySelectorAll**\<`E`\>(`selectors`): `NodeListOf`\<`E`\> + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:27102 + +##### Type Parameters + +###### E + +`E` *extends* `Element` = `Element` + +##### Parameters + +###### selectors + +`string` + +##### Returns + +`NodeListOf`\<`E`\> + +##### Inherited from + +`HTMLElement.querySelectorAll` + +*** + +### releasePointerCapture() + +> **releasePointerCapture**(`pointerId`): `void` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13806 + +The **`releasePointerCapture()`** method of the Element interface releases (stops) pointer capture that was previously set for a specific (PointerEvent) pointer. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/releasePointerCapture) + +#### Parameters + +##### pointerId + +`number` + +#### Returns + +`void` + +#### Inherited from + +`HTMLElement.releasePointerCapture` + +*** + +### remove() + +> **remove**(): `void` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:10671 + +Removes node. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/CharacterData/remove) + +#### Returns + +`void` + +#### Inherited from + +`HTMLElement.remove` + +*** + +### removeAttribute() + +> **removeAttribute**(`qualifiedName`): `void` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13812 + +The Element method **`removeAttribute()`** removes the attribute with the specified name from the element. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/removeAttribute) + +#### Parameters + +##### qualifiedName + +`string` + +#### Returns + +`void` + +#### Inherited from + +`HTMLElement.removeAttribute` + +*** + +### removeAttributeNode() + +> **removeAttributeNode**(`attr`): `Attr` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13824 + +The **`removeAttributeNode()`** method of the Element interface removes the specified Attr node from the element. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/removeAttributeNode) + +#### Parameters + +##### attr + +`Attr` + +#### Returns + +`Attr` + +#### Inherited from + +`HTMLElement.removeAttributeNode` + +*** + +### removeAttributeNS() + +> **removeAttributeNS**(`namespace`, `localName`): `void` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13818 + +The **`removeAttributeNS()`** method of the Element interface removes the specified attribute with the specified namespace from an element. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/removeAttributeNS) + +#### Parameters + +##### namespace + +`string` \| `null` + +##### localName + +`string` + +#### Returns + +`void` + +#### Inherited from + +`HTMLElement.removeAttributeNS` + +*** + +### removeChild() + +> **removeChild**\<`T`\>(`child`): `T` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26203 + +The **`removeChild()`** method of the Node interface removes a child node from the DOM and returns the removed node. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/removeChild) + +#### Type Parameters + +##### T + +`T` *extends* `Node` + +#### Parameters + +##### child + +`T` + +#### Returns + +`T` + +#### Inherited from + +`HTMLElement.removeChild` + +*** + +### replaceChild() + +> **replaceChild**\<`T`\>(`node`, `child`): `T` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:26209 + +The **`replaceChild()`** method of the Node interface replaces a child node within the given (parent) node. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/replaceChild) + +#### Type Parameters + +##### T + +`T` *extends* `Node` + +#### Parameters + +##### node + +`Node` + +##### child + +`T` + +#### Returns + +`T` + +#### Inherited from + +`HTMLElement.replaceChild` + +*** + +### replaceChildren() + +> **replaceChildren**(...`nodes`): `void` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:27110 + +Replace all children of node with nodes, while replacing strings in nodes with equivalent Text nodes. + +Throws a "HierarchyRequestError" DOMException if the constraints of the node tree are violated. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/replaceChildren) + +#### Parameters + +##### nodes + +...(`string` \| `Node`)[] + +#### Returns + +`void` + +#### Inherited from + +`HTMLElement.replaceChildren` + +*** + +### replaceWith() + +> **replaceWith**(...`nodes`): `void` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:10679 + +Replaces node with nodes, while replacing strings in nodes with equivalent Text nodes. + +Throws a "HierarchyRequestError" DOMException if the constraints of the node tree are violated. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/CharacterData/replaceWith) + +#### Parameters + +##### nodes + +...(`string` \| `Node`)[] + +#### Returns + +`void` + +#### Inherited from + +`HTMLElement.replaceWith` + +*** + +### requestFullscreen() + +> **requestFullscreen**(`options?`): `Promise`\<`void`\> + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13830 + +The **`Element.requestFullscreen()`** method issues an asynchronous request to make the element be displayed in fullscreen mode. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/requestFullscreen) + +#### Parameters + +##### options? + +`FullscreenOptions` + +#### Returns + +`Promise`\<`void`\> + +#### Inherited from + +`HTMLElement.requestFullscreen` + +*** + +### requestPointerLock() + +> **requestPointerLock**(`options?`): `Promise`\<`void`\> + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13836 + +The **`requestPointerLock()`** method of the Element interface lets you asynchronously ask for the pointer to be locked on the given element. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/requestPointerLock) + +#### Parameters + +##### options? + +`PointerLockOptions` + +#### Returns + +`Promise`\<`void`\> + +#### Inherited from + +`HTMLElement.requestPointerLock` + +*** + +### scroll() + +#### Call Signature + +> **scroll**(`options?`): `void` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13842 + +The **`scroll()`** method of the Element interface scrolls the element to a particular set of coordinates inside a given element. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/scroll) + +##### Parameters + +###### options? + +`ScrollToOptions` + +##### Returns + +`void` + +##### Inherited from + +`HTMLElement.scroll` + +#### Call Signature + +> **scroll**(`x`, `y`): `void` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13843 + +##### Parameters + +###### x + +`number` + +###### y + +`number` + +##### Returns + +`void` + +##### Inherited from + +`HTMLElement.scroll` + +*** + +### scrollBy() + +#### Call Signature + +> **scrollBy**(`options?`): `void` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13849 + +The **`scrollBy()`** method of the Element interface scrolls an element by the given amount. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/scrollBy) + +##### Parameters + +###### options? + +`ScrollToOptions` + +##### Returns + +`void` + +##### Inherited from + +`HTMLElement.scrollBy` + +#### Call Signature + +> **scrollBy**(`x`, `y`): `void` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13850 + +##### Parameters + +###### x + +`number` + +###### y + +`number` + +##### Returns + +`void` + +##### Inherited from + +`HTMLElement.scrollBy` + +*** + +### scrollIntoView() + +> **scrollIntoView**(`arg?`): `void` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13856 + +The Element interface's **`scrollIntoView()`** method scrolls the element's ancestor containers such that the element on which scrollIntoView() is called is visible to the user. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/scrollIntoView) + +#### Parameters + +##### arg? + +`boolean` \| `ScrollIntoViewOptions` + +#### Returns + +`void` + +#### Inherited from + +`HTMLElement.scrollIntoView` + +*** + +### scrollTo() + +#### Call Signature + +> **scrollTo**(`options?`): `void` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13862 + +The **`scrollTo()`** method of the Element interface scrolls to a particular set of coordinates inside a given element. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/scrollTo) + +##### Parameters + +###### options? + +`ScrollToOptions` + +##### Returns + +`void` + +##### Inherited from + +`HTMLElement.scrollTo` + +#### Call Signature + +> **scrollTo**(`x`, `y`): `void` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13863 + +##### Parameters + +###### x + +`number` + +###### y + +`number` + +##### Returns + +`void` + +##### Inherited from + +`HTMLElement.scrollTo` + +*** + +### setAttribute() + +> **setAttribute**(`qualifiedName`, `value`): `void` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13869 + +The **`setAttribute()`** method of the Element interface sets the value of an attribute on the specified element. If the attribute already exists, the value is updated; otherwise a new attribute is added with the specified name and value. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setAttribute) + +#### Parameters + +##### qualifiedName + +`string` + +##### value + +`string` + +#### Returns + +`void` + +#### Inherited from + +`HTMLElement.setAttribute` + +*** + +### setAttributeNode() + +> **setAttributeNode**(`attr`): `Attr` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13881 + +The **`setAttributeNode()`** method of the Element interface adds a new Attr node to the specified element. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setAttributeNode) + +#### Parameters + +##### attr + +`Attr` + +#### Returns + +`Attr` \| `null` + +#### Inherited from + +`HTMLElement.setAttributeNode` + +*** + +### setAttributeNodeNS() + +> **setAttributeNodeNS**(`attr`): `Attr` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13887 + +The **`setAttributeNodeNS()`** method of the Element interface adds a new namespaced Attr node to an element. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setAttributeNodeNS) + +#### Parameters + +##### attr + +`Attr` + +#### Returns + +`Attr` \| `null` + +#### Inherited from + +`HTMLElement.setAttributeNodeNS` + +*** + +### setAttributeNS() + +> **setAttributeNS**(`namespace`, `qualifiedName`, `value`): `void` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13875 + +The **`setAttributeNS()`** method of the Element interface adds a new attribute or changes the value of an attribute with the given namespace and name. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setAttributeNS) + +#### Parameters + +##### namespace + +`string` \| `null` + +##### qualifiedName + +`string` + +##### value + +`string` + +#### Returns + +`void` + +#### Inherited from + +`HTMLElement.setAttributeNS` + +*** + +### setHTMLUnsafe() + +> **setHTMLUnsafe**(`html`): `void` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13893 + +The **`setHTMLUnsafe()`** method of the Element interface is used to parse HTML input into a DocumentFragment, optionally filtering out unwanted elements and attributes, and those that don't belong in the context, and then using it to replace the element's subtree in the DOM. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setHTMLUnsafe) + +#### Parameters + +##### html + +`string` + +#### Returns + +`void` + +#### Inherited from + +`HTMLElement.setHTMLUnsafe` + +*** + +### setPointerCapture() + +> **setPointerCapture**(`pointerId`): `void` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13899 + +The **`setPointerCapture()`** method of the Element interface is used to designate a specific element as the capture target of future pointer events. Subsequent events for the pointer will be targeted at the capture element until capture is released (via Element.releasePointerCapture() or the pointerup event is fired). + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setPointerCapture) + +#### Parameters + +##### pointerId + +`number` + +#### Returns + +`void` + +#### Inherited from + +`HTMLElement.setPointerCapture` + +*** + +### showPopover() + +> **showPopover**(`options?`): `void` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:17879 + +The **`showPopover()`** method of the HTMLElement interface shows a popover element (i.e., one that has a valid popover attribute) by adding it to the top layer. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/showPopover) + +#### Parameters + +##### options? + +`ShowPopoverOptions` + +#### Returns + +`void` + +#### Inherited from + +`HTMLElement.showPopover` + +*** + +### toggleAttribute() + +> **toggleAttribute**(`qualifiedName`, `force?`): `boolean` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13905 + +The **`toggleAttribute()`** method of the Element interface toggles a Boolean attribute (removing it if it is present and adding it if it is not present) on the given element. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/toggleAttribute) + +#### Parameters + +##### qualifiedName + +`string` + +##### force? + +`boolean` + +#### Returns + +`boolean` + +#### Inherited from + +`HTMLElement.toggleAttribute` + +*** + +### togglePopover() + +> **togglePopover**(`options?`): `boolean` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:17885 + +The **`togglePopover()`** method of the HTMLElement interface toggles a popover element (i.e., one that has a valid popover attribute) between the hidden and showing states. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/togglePopover) + +#### Parameters + +##### options? + +`boolean` \| `TogglePopoverOptions` + +#### Returns + +`boolean` + +#### Inherited from + +`HTMLElement.togglePopover` + +*** + +### ~~webkitMatchesSelector()~~ + +> **webkitMatchesSelector**(`selectors`): `boolean` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:13911 + +#### Parameters + +##### selectors + +`string` + +#### Returns + +`boolean` + +#### Deprecated + +This is a legacy alias of `matches`. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/matches) + +#### Inherited from + +`HTMLElement.webkitMatchesSelector` diff --git a/frontend/.typedoc/shared/browserRegistry/interfaces/ElectronNativeImage.md b/frontend/.typedoc/shared/browserRegistry/interfaces/ElectronNativeImage.md new file mode 100644 index 00000000..3343c2bd --- /dev/null +++ b/frontend/.typedoc/shared/browserRegistry/interfaces/ElectronNativeImage.md @@ -0,0 +1,111 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/browserRegistry](../README.md) / ElectronNativeImage + +# Interface: ElectronNativeImage + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserRegistry.ts:3](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserRegistry.ts#L3) + +## Properties + +### getSize + +> **getSize**: () => `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserRegistry.ts:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserRegistry.ts#L8) + +#### Returns + +`object` + +##### height + +> **height**: `number` + +##### width + +> **width**: `number` + +*** + +### isEmpty + +> **isEmpty**: () => `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserRegistry.ts:7](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserRegistry.ts#L7) + +#### Returns + +`boolean` + +*** + +### resize + +> **resize**: (`options`) => `ElectronNativeImage` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserRegistry.ts:9](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserRegistry.ts#L9) + +#### Parameters + +##### options + +###### height? + +`number` + +###### quality? + +`"good"` \| `"better"` \| `"best"` + +###### width? + +`number` + +#### Returns + +`ElectronNativeImage` + +*** + +### toDataURL + +> **toDataURL**: () => `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserRegistry.ts:4](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserRegistry.ts#L4) + +#### Returns + +`string` + +*** + +### toJPEG + +> **toJPEG**: (`quality`) => `Buffer` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserRegistry.ts:6](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserRegistry.ts#L6) + +#### Parameters + +##### quality + +`number` + +#### Returns + +`Buffer` + +*** + +### toPNG + +> **toPNG**: () => `Buffer` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserRegistry.ts:5](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserRegistry.ts#L5) + +#### Returns + +`Buffer` diff --git a/frontend/.typedoc/shared/browserSettle/README.md b/frontend/.typedoc/shared/browserSettle/README.md new file mode 100644 index 00000000..c9fe85e2 --- /dev/null +++ b/frontend/.typedoc/shared/browserSettle/README.md @@ -0,0 +1,18 @@ +[**open-swarm**](../../README.md) + +*** + +[open-swarm](../../README.md) / shared/browserSettle + +# shared/browserSettle + +## Variables + +- [SETTLE\_FLOOR\_MS](variables/SETTLE_FLOOR_MS.md) +- [SETTLE\_POLL\_MS](variables/SETTLE_POLL_MS.md) +- [SETTLE\_QUIET\_MS](variables/SETTLE_QUIET_MS.md) + +## Functions + +- [settleProbeJs](functions/settleProbeJs.md) +- [shouldStopWaiting](functions/shouldStopWaiting.md) diff --git a/frontend/.typedoc/shared/browserSettle/functions/settleProbeJs.md b/frontend/.typedoc/shared/browserSettle/functions/settleProbeJs.md new file mode 100644 index 00000000..afb74f54 --- /dev/null +++ b/frontend/.typedoc/shared/browserSettle/functions/settleProbeJs.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/browserSettle](../README.md) / settleProbeJs + +# Function: settleProbeJs() + +> **settleProbeJs**(`until`): `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserSettle.ts:18](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserSettle.ts#L18) + +## Parameters + +### until + +`string` + +## Returns + +`string` diff --git a/frontend/.typedoc/shared/browserSettle/functions/shouldStopWaiting.md b/frontend/.typedoc/shared/browserSettle/functions/shouldStopWaiting.md new file mode 100644 index 00000000..2a2e3574 --- /dev/null +++ b/frontend/.typedoc/shared/browserSettle/functions/shouldStopWaiting.md @@ -0,0 +1,45 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/browserSettle](../README.md) / shouldStopWaiting + +# Function: shouldStopWaiting() + +> **shouldStopWaiting**(`ready`, `quietMs`, `domStableMs`, `found`, `elapsedMs`, `floorMs?`, `windowMs?`): `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserSettle.ts:37](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserSettle.ts#L37) + +## Parameters + +### ready + +`boolean` + +### quietMs + +`number` + +### domStableMs + +`number` + +### found + +`boolean` + +### elapsedMs + +`number` + +### floorMs? + +`number` = `SETTLE_FLOOR_MS` + +### windowMs? + +`number` = `SETTLE_QUIET_MS` + +## Returns + +`boolean` diff --git a/frontend/.typedoc/shared/browserSettle/variables/SETTLE_FLOOR_MS.md b/frontend/.typedoc/shared/browserSettle/variables/SETTLE_FLOOR_MS.md new file mode 100644 index 00000000..ab194b72 --- /dev/null +++ b/frontend/.typedoc/shared/browserSettle/variables/SETTLE_FLOOR_MS.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/browserSettle](../README.md) / SETTLE\_FLOOR\_MS + +# Variable: SETTLE\_FLOOR\_MS + +> `const` **SETTLE\_FLOOR\_MS**: `250` = `250` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserSettle.ts:10](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserSettle.ts#L10) diff --git a/frontend/.typedoc/shared/browserSettle/variables/SETTLE_POLL_MS.md b/frontend/.typedoc/shared/browserSettle/variables/SETTLE_POLL_MS.md new file mode 100644 index 00000000..0657377e --- /dev/null +++ b/frontend/.typedoc/shared/browserSettle/variables/SETTLE_POLL_MS.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/browserSettle](../README.md) / SETTLE\_POLL\_MS + +# Variable: SETTLE\_POLL\_MS + +> `const` **SETTLE\_POLL\_MS**: `150` = `150` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserSettle.ts:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserSettle.ts#L12) diff --git a/frontend/.typedoc/shared/browserSettle/variables/SETTLE_QUIET_MS.md b/frontend/.typedoc/shared/browserSettle/variables/SETTLE_QUIET_MS.md new file mode 100644 index 00000000..d3b20c22 --- /dev/null +++ b/frontend/.typedoc/shared/browserSettle/variables/SETTLE_QUIET_MS.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/browserSettle](../README.md) / SETTLE\_QUIET\_MS + +# Variable: SETTLE\_QUIET\_MS + +> `const` **SETTLE\_QUIET\_MS**: `400` = `400` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/browserSettle.ts:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/browserSettle.ts#L11) diff --git a/frontend/.typedoc/shared/canvasInteractionState/README.md b/frontend/.typedoc/shared/canvasInteractionState/README.md new file mode 100644 index 00000000..b1402521 --- /dev/null +++ b/frontend/.typedoc/shared/canvasInteractionState/README.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../README.md) + +*** + +[open-swarm](../../README.md) / shared/canvasInteractionState + +# shared/canvasInteractionState + +## Functions + +- [isCanvasInteractionActive](functions/isCanvasInteractionActive.md) +- [onCanvasInteractionEnd](functions/onCanvasInteractionEnd.md) +- [setCanvasInteractionActive](functions/setCanvasInteractionActive.md) diff --git a/frontend/.typedoc/shared/canvasInteractionState/functions/isCanvasInteractionActive.md b/frontend/.typedoc/shared/canvasInteractionState/functions/isCanvasInteractionActive.md new file mode 100644 index 00000000..5ac31881 --- /dev/null +++ b/frontend/.typedoc/shared/canvasInteractionState/functions/isCanvasInteractionActive.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/canvasInteractionState](../README.md) / isCanvasInteractionActive + +# Function: isCanvasInteractionActive() + +> **isCanvasInteractionActive**(): `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/canvasInteractionState.ts:6](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/canvasInteractionState.ts#L6) + +## Returns + +`boolean` diff --git a/frontend/.typedoc/shared/canvasInteractionState/functions/onCanvasInteractionEnd.md b/frontend/.typedoc/shared/canvasInteractionState/functions/onCanvasInteractionEnd.md new file mode 100644 index 00000000..b3ae8d5b --- /dev/null +++ b/frontend/.typedoc/shared/canvasInteractionState/functions/onCanvasInteractionEnd.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/canvasInteractionState](../README.md) / onCanvasInteractionEnd + +# Function: onCanvasInteractionEnd() + +> **onCanvasInteractionEnd**(`fn`): () => `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/canvasInteractionState.ts:22](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/canvasInteractionState.ts#L22) + +## Parameters + +### fn + +() => `void` + +## Returns + +() => `void` diff --git a/frontend/.typedoc/shared/canvasInteractionState/functions/setCanvasInteractionActive.md b/frontend/.typedoc/shared/canvasInteractionState/functions/setCanvasInteractionActive.md new file mode 100644 index 00000000..70850ad6 --- /dev/null +++ b/frontend/.typedoc/shared/canvasInteractionState/functions/setCanvasInteractionActive.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/canvasInteractionState](../README.md) / setCanvasInteractionActive + +# Function: setCanvasInteractionActive() + +> **setCanvasInteractionActive**(`active`): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/canvasInteractionState.ts:10](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/canvasInteractionState.ts#L10) + +## Parameters + +### active + +`boolean` + +## Returns + +`void` diff --git a/frontend/.typedoc/shared/config/README.md b/frontend/.typedoc/shared/config/README.md new file mode 100644 index 00000000..16d91c7c --- /dev/null +++ b/frontend/.typedoc/shared/config/README.md @@ -0,0 +1,19 @@ +[**open-swarm**](../../README.md) + +*** + +[open-swarm](../../README.md) / shared/config + +# shared/config + +## Variables + +- [API\_BASE](variables/API_BASE.md) +- [OPENSWARM\_DEFAULT\_PROXY\_URL](variables/OPENSWARM_DEFAULT_PROXY_URL.md) +- [WS\_BASE](variables/WS_BASE.md) + +## Functions + +- [ensureAuthToken](functions/ensureAuthToken.md) +- [getAuthToken](functions/getAuthToken.md) +- [refreshAuthToken](functions/refreshAuthToken.md) diff --git a/frontend/.typedoc/shared/config/functions/ensureAuthToken.md b/frontend/.typedoc/shared/config/functions/ensureAuthToken.md new file mode 100644 index 00000000..e51e8f93 --- /dev/null +++ b/frontend/.typedoc/shared/config/functions/ensureAuthToken.md @@ -0,0 +1,17 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/config](../README.md) / ensureAuthToken + +# Function: ensureAuthToken() + +> **ensureAuthToken**(): `Promise`\<`string`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/config.ts:53](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/config.ts#L53) + +Resolve auth token once; concurrent callers share the same promise. + +## Returns + +`Promise`\<`string`\> diff --git a/frontend/.typedoc/shared/config/functions/getAuthToken.md b/frontend/.typedoc/shared/config/functions/getAuthToken.md new file mode 100644 index 00000000..1948f2ad --- /dev/null +++ b/frontend/.typedoc/shared/config/functions/getAuthToken.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/config](../README.md) / getAuthToken + +# Function: getAuthToken() + +> **getAuthToken**(): `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/config.ts:23](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/config.ts#L23) + +## Returns + +`string` diff --git a/frontend/.typedoc/shared/config/functions/refreshAuthToken.md b/frontend/.typedoc/shared/config/functions/refreshAuthToken.md new file mode 100644 index 00000000..e85bdaa3 --- /dev/null +++ b/frontend/.typedoc/shared/config/functions/refreshAuthToken.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/config](../README.md) / refreshAuthToken + +# Function: refreshAuthToken() + +> **refreshAuthToken**(): `Promise`\<`string`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/config.ts:27](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/config.ts#L27) + +## Returns + +`Promise`\<`string`\> diff --git a/frontend/.typedoc/shared/config/variables/API_BASE.md b/frontend/.typedoc/shared/config/variables/API_BASE.md new file mode 100644 index 00000000..63a666f4 --- /dev/null +++ b/frontend/.typedoc/shared/config/variables/API_BASE.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/config](../README.md) / API\_BASE + +# Variable: API\_BASE + +> `const` **API\_BASE**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/config.ts:14](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/config.ts#L14) diff --git a/frontend/.typedoc/shared/config/variables/OPENSWARM_DEFAULT_PROXY_URL.md b/frontend/.typedoc/shared/config/variables/OPENSWARM_DEFAULT_PROXY_URL.md new file mode 100644 index 00000000..0a7de41e --- /dev/null +++ b/frontend/.typedoc/shared/config/variables/OPENSWARM_DEFAULT_PROXY_URL.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/config](../README.md) / OPENSWARM\_DEFAULT\_PROXY\_URL + +# Variable: OPENSWARM\_DEFAULT\_PROXY\_URL + +> `const` **OPENSWARM\_DEFAULT\_PROXY\_URL**: `"https://api.openswarm.com"` = `'https://api.openswarm.com'` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/config.ts:17](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/config.ts#L17) diff --git a/frontend/.typedoc/shared/config/variables/WS_BASE.md b/frontend/.typedoc/shared/config/variables/WS_BASE.md new file mode 100644 index 00000000..1b7f15bf --- /dev/null +++ b/frontend/.typedoc/shared/config/variables/WS_BASE.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/config](../README.md) / WS\_BASE + +# Variable: WS\_BASE + +> `const` **WS\_BASE**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/config.ts:15](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/config.ts#L15) diff --git a/frontend/.typedoc/shared/dashboardClipboard/README.md b/frontend/.typedoc/shared/dashboardClipboard/README.md new file mode 100644 index 00000000..62089f54 --- /dev/null +++ b/frontend/.typedoc/shared/dashboardClipboard/README.md @@ -0,0 +1,17 @@ +[**open-swarm**](../../README.md) + +*** + +[open-swarm](../../README.md) / shared/dashboardClipboard + +# shared/dashboardClipboard + +## Interfaces + +- [ClipboardCard](interfaces/ClipboardCard.md) + +## Functions + +- [clearClipboard](functions/clearClipboard.md) +- [getClipboardCards](functions/getClipboardCards.md) +- [setClipboardCards](functions/setClipboardCards.md) diff --git a/frontend/.typedoc/shared/dashboardClipboard/functions/clearClipboard.md b/frontend/.typedoc/shared/dashboardClipboard/functions/clearClipboard.md new file mode 100644 index 00000000..b500738a --- /dev/null +++ b/frontend/.typedoc/shared/dashboardClipboard/functions/clearClipboard.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/dashboardClipboard](../README.md) / clearClipboard + +# Function: clearClipboard() + +> **clearClipboard**(): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/dashboardClipboard.ts:25](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/dashboardClipboard.ts#L25) + +## Returns + +`void` diff --git a/frontend/.typedoc/shared/dashboardClipboard/functions/getClipboardCards.md b/frontend/.typedoc/shared/dashboardClipboard/functions/getClipboardCards.md new file mode 100644 index 00000000..deb3823c --- /dev/null +++ b/frontend/.typedoc/shared/dashboardClipboard/functions/getClipboardCards.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/dashboardClipboard](../README.md) / getClipboardCards + +# Function: getClipboardCards() + +> **getClipboardCards**(): [`ClipboardCard`](../interfaces/ClipboardCard.md)[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/dashboardClipboard.ts:21](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/dashboardClipboard.ts#L21) + +## Returns + +[`ClipboardCard`](../interfaces/ClipboardCard.md)[] diff --git a/frontend/.typedoc/shared/dashboardClipboard/functions/setClipboardCards.md b/frontend/.typedoc/shared/dashboardClipboard/functions/setClipboardCards.md new file mode 100644 index 00000000..4d5d5e70 --- /dev/null +++ b/frontend/.typedoc/shared/dashboardClipboard/functions/setClipboardCards.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/dashboardClipboard](../README.md) / setClipboardCards + +# Function: setClipboardCards() + +> **setClipboardCards**(`cards`): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/dashboardClipboard.ts:17](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/dashboardClipboard.ts#L17) + +## Parameters + +### cards + +[`ClipboardCard`](../interfaces/ClipboardCard.md)[] + +## Returns + +`void` diff --git a/frontend/.typedoc/shared/dashboardClipboard/interfaces/ClipboardCard.md b/frontend/.typedoc/shared/dashboardClipboard/interfaces/ClipboardCard.md new file mode 100644 index 00000000..8cc471c2 --- /dev/null +++ b/frontend/.typedoc/shared/dashboardClipboard/interfaces/ClipboardCard.md @@ -0,0 +1,81 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/dashboardClipboard](../README.md) / ClipboardCard + +# Interface: ClipboardCard + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/dashboardClipboard.ts:3](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/dashboardClipboard.ts#L3) + +## Properties + +### expanded? + +> `optional` **expanded?**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/dashboardClipboard.ts:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/dashboardClipboard.ts#L12) + +*** + +### height + +> **height**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/dashboardClipboard.ts:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/dashboardClipboard.ts#L11) + +*** + +### id + +> **id**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/dashboardClipboard.ts:5](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/dashboardClipboard.ts#L5) + +*** + +### meta + +> **meta**: `Record`\<`string`, `any`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/dashboardClipboard.ts:7](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/dashboardClipboard.ts#L7) + +*** + +### name + +> **name**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/dashboardClipboard.ts:6](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/dashboardClipboard.ts#L6) + +*** + +### type + +> **type**: [`CardType`](../../state/dashboardLayoutSlice/type-aliases/CardType.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/dashboardClipboard.ts:4](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/dashboardClipboard.ts#L4) + +*** + +### width + +> **width**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/dashboardClipboard.ts:10](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/dashboardClipboard.ts#L10) + +*** + +### x + +> **x**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/dashboardClipboard.ts:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/dashboardClipboard.ts#L8) + +*** + +### y + +> **y**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/dashboardClipboard.ts:9](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/dashboardClipboard.ts#L9) diff --git a/frontend/.typedoc/shared/hooks/README.md b/frontend/.typedoc/shared/hooks/README.md new file mode 100644 index 00000000..8249a623 --- /dev/null +++ b/frontend/.typedoc/shared/hooks/README.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../README.md) + +*** + +[open-swarm](../../README.md) / shared/hooks + +# shared/hooks + +## Variables + +- [useAppSelector](variables/useAppSelector.md) + +## Functions + +- [useAppDispatch](functions/useAppDispatch.md) diff --git a/frontend/.typedoc/shared/hooks/functions/useAppDispatch.md b/frontend/.typedoc/shared/hooks/functions/useAppDispatch.md new file mode 100644 index 00000000..e75a506d --- /dev/null +++ b/frontend/.typedoc/shared/hooks/functions/useAppDispatch.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/hooks](../README.md) / useAppDispatch + +# Function: useAppDispatch() + +> **useAppDispatch**(): `ThunkDispatch`\<\{ `agents`: `AgentsState`; `dashboardLayout`: [`DashboardLayoutState`](../../state/dashboardLayoutSlice/interfaces/DashboardLayoutState.md); `dashboards`: `DashboardsState`; `interaction`: `InteractionState`; `mcpRegistry`: `McpRegistryState`; `models`: `ModelsState`; `modes`: `ModesState`; `onboardingProgress`: [`OnboardingProgressState`](../../state/onboardingProgressSlice/interfaces/OnboardingProgressState.md); `outputs`: `OutputsState`; `settings`: `SettingsState`; `skillRegistry`: `SkillRegistryState`; `skills`: `SkillsState`; `streaming`: `StreamingState`; `subscriptions`: [`SubscriptionsState`](../../state/subscriptionsSlice/interfaces/SubscriptionsState.md); `tempState`: `TempState`; `tools`: `ToolsState`; `update`: `UpdateState`; \}, `undefined`, `UnknownAction`\> & `Dispatch`\<`UnknownAction`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/hooks.ts:4](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/hooks.ts#L4) + +## Returns + +`ThunkDispatch`\<\{ `agents`: `AgentsState`; `dashboardLayout`: [`DashboardLayoutState`](../../state/dashboardLayoutSlice/interfaces/DashboardLayoutState.md); `dashboards`: `DashboardsState`; `interaction`: `InteractionState`; `mcpRegistry`: `McpRegistryState`; `models`: `ModelsState`; `modes`: `ModesState`; `onboardingProgress`: [`OnboardingProgressState`](../../state/onboardingProgressSlice/interfaces/OnboardingProgressState.md); `outputs`: `OutputsState`; `settings`: `SettingsState`; `skillRegistry`: `SkillRegistryState`; `skills`: `SkillsState`; `streaming`: `StreamingState`; `subscriptions`: [`SubscriptionsState`](../../state/subscriptionsSlice/interfaces/SubscriptionsState.md); `tempState`: `TempState`; `tools`: `ToolsState`; `update`: `UpdateState`; \}, `undefined`, `UnknownAction`\> & `Dispatch`\<`UnknownAction`\> diff --git a/frontend/.typedoc/shared/hooks/useDashboardActive/README.md b/frontend/.typedoc/shared/hooks/useDashboardActive/README.md new file mode 100644 index 00000000..8e073997 --- /dev/null +++ b/frontend/.typedoc/shared/hooks/useDashboardActive/README.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / shared/hooks/useDashboardActive + +# shared/hooks/useDashboardActive + +## Variables + +- [DashboardActiveProvider](variables/DashboardActiveProvider.md) + +## Functions + +- [useDashboardActive](functions/useDashboardActive.md) diff --git a/frontend/.typedoc/shared/hooks/useDashboardActive/functions/useDashboardActive.md b/frontend/.typedoc/shared/hooks/useDashboardActive/functions/useDashboardActive.md new file mode 100644 index 00000000..2fcd6652 --- /dev/null +++ b/frontend/.typedoc/shared/hooks/useDashboardActive/functions/useDashboardActive.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/hooks/useDashboardActive](../README.md) / useDashboardActive + +# Function: useDashboardActive() + +> **useDashboardActive**(): `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/hooks/useDashboardActive.tsx:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/hooks/useDashboardActive.tsx#L8) + +## Returns + +`boolean` diff --git a/frontend/.typedoc/shared/hooks/useDashboardActive/variables/DashboardActiveProvider.md b/frontend/.typedoc/shared/hooks/useDashboardActive/variables/DashboardActiveProvider.md new file mode 100644 index 00000000..c8dae231 --- /dev/null +++ b/frontend/.typedoc/shared/hooks/useDashboardActive/variables/DashboardActiveProvider.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/hooks/useDashboardActive](../README.md) / DashboardActiveProvider + +# Variable: DashboardActiveProvider + +> `const` **DashboardActiveProvider**: `Provider`\<`boolean`\> = `DashboardActiveContext.Provider` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/hooks/useDashboardActive.tsx:6](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/hooks/useDashboardActive.tsx#L6) diff --git a/frontend/.typedoc/shared/hooks/useDeepLink/README.md b/frontend/.typedoc/shared/hooks/useDeepLink/README.md new file mode 100644 index 00000000..f588126c --- /dev/null +++ b/frontend/.typedoc/shared/hooks/useDeepLink/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / shared/hooks/useDeepLink + +# shared/hooks/useDeepLink + +## Functions + +- [useDeepLink](functions/useDeepLink.md) diff --git a/frontend/.typedoc/shared/hooks/useDeepLink/functions/useDeepLink.md b/frontend/.typedoc/shared/hooks/useDeepLink/functions/useDeepLink.md new file mode 100644 index 00000000..690ead90 --- /dev/null +++ b/frontend/.typedoc/shared/hooks/useDeepLink/functions/useDeepLink.md @@ -0,0 +1,17 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/hooks/useDeepLink](../README.md) / useDeepLink + +# Function: useDeepLink() + +> **useDeepLink**(): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/hooks/useDeepLink.ts:10](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/hooks/useDeepLink.ts#L10) + +Subscribe to openswarm:// auth/oauth deep-links from Electron main; no-op in browser. + +## Returns + +`void` diff --git a/frontend/.typedoc/shared/hooks/useInteractionHeartbeat/README.md b/frontend/.typedoc/shared/hooks/useInteractionHeartbeat/README.md new file mode 100644 index 00000000..4b1968ed --- /dev/null +++ b/frontend/.typedoc/shared/hooks/useInteractionHeartbeat/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / shared/hooks/useInteractionHeartbeat + +# shared/hooks/useInteractionHeartbeat + +## Functions + +- [useInteractionHeartbeat](functions/useInteractionHeartbeat.md) diff --git a/frontend/.typedoc/shared/hooks/useInteractionHeartbeat/functions/useInteractionHeartbeat.md b/frontend/.typedoc/shared/hooks/useInteractionHeartbeat/functions/useInteractionHeartbeat.md new file mode 100644 index 00000000..148b0f2f --- /dev/null +++ b/frontend/.typedoc/shared/hooks/useInteractionHeartbeat/functions/useInteractionHeartbeat.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/hooks/useInteractionHeartbeat](../README.md) / useInteractionHeartbeat + +# Function: useInteractionHeartbeat() + +> **useInteractionHeartbeat**(): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/hooks/useInteractionHeartbeat.ts:9](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/hooks/useInteractionHeartbeat.ts#L9) + +## Returns + +`void` diff --git a/frontend/.typedoc/shared/hooks/useLastDashboardId/README.md b/frontend/.typedoc/shared/hooks/useLastDashboardId/README.md new file mode 100644 index 00000000..3365e344 --- /dev/null +++ b/frontend/.typedoc/shared/hooks/useLastDashboardId/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / shared/hooks/useLastDashboardId + +# shared/hooks/useLastDashboardId + +## Functions + +- [useLastDashboardId](functions/useLastDashboardId.md) diff --git a/frontend/.typedoc/shared/hooks/useLastDashboardId/functions/useLastDashboardId.md b/frontend/.typedoc/shared/hooks/useLastDashboardId/functions/useLastDashboardId.md new file mode 100644 index 00000000..b2c5e1e4 --- /dev/null +++ b/frontend/.typedoc/shared/hooks/useLastDashboardId/functions/useLastDashboardId.md @@ -0,0 +1,17 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/hooks/useLastDashboardId](../README.md) / useLastDashboardId + +# Function: useLastDashboardId() + +> **useLastDashboardId**(): \[`string` \| `null`, (`id`) => `void`\] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/hooks/useLastDashboardId.ts:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/hooks/useLastDashboardId.ts#L8) + +Sticky last-visited dashboard id so Dashboard stays mounted across non-dashboard nav. + +## Returns + +\[`string` \| `null`, (`id`) => `void`\] diff --git a/frontend/.typedoc/shared/hooks/useReducedMotion/README.md b/frontend/.typedoc/shared/hooks/useReducedMotion/README.md new file mode 100644 index 00000000..e444b575 --- /dev/null +++ b/frontend/.typedoc/shared/hooks/useReducedMotion/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / shared/hooks/useReducedMotion + +# shared/hooks/useReducedMotion + +## Functions + +- [useReducedMotion](functions/useReducedMotion.md) diff --git a/frontend/.typedoc/shared/hooks/useReducedMotion/functions/useReducedMotion.md b/frontend/.typedoc/shared/hooks/useReducedMotion/functions/useReducedMotion.md new file mode 100644 index 00000000..d4a54e84 --- /dev/null +++ b/frontend/.typedoc/shared/hooks/useReducedMotion/functions/useReducedMotion.md @@ -0,0 +1,17 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/hooks/useReducedMotion](../README.md) / useReducedMotion + +# Function: useReducedMotion() + +> **useReducedMotion**(): `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/hooks/useReducedMotion.ts:22](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/hooks/useReducedMotion.ts#L22) + +True when the OS "Reduce motion" preference is on; reactive to OS toggles. + +## Returns + +`boolean` diff --git a/frontend/.typedoc/shared/hooks/useRouteTracker/README.md b/frontend/.typedoc/shared/hooks/useRouteTracker/README.md new file mode 100644 index 00000000..c088882d --- /dev/null +++ b/frontend/.typedoc/shared/hooks/useRouteTracker/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / shared/hooks/useRouteTracker + +# shared/hooks/useRouteTracker + +## Functions + +- [useRouteTracker](functions/useRouteTracker.md) diff --git a/frontend/.typedoc/shared/hooks/useRouteTracker/functions/useRouteTracker.md b/frontend/.typedoc/shared/hooks/useRouteTracker/functions/useRouteTracker.md new file mode 100644 index 00000000..30f4a696 --- /dev/null +++ b/frontend/.typedoc/shared/hooks/useRouteTracker/functions/useRouteTracker.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/hooks/useRouteTracker](../README.md) / useRouteTracker + +# Function: useRouteTracker() + +> **useRouteTracker**(): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/hooks/useRouteTracker.ts:7](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/hooks/useRouteTracker.ts#L7) + +## Returns + +`void` diff --git a/frontend/.typedoc/shared/hooks/useRuntimePreviewUrl/README.md b/frontend/.typedoc/shared/hooks/useRuntimePreviewUrl/README.md new file mode 100644 index 00000000..d4b199b7 --- /dev/null +++ b/frontend/.typedoc/shared/hooks/useRuntimePreviewUrl/README.md @@ -0,0 +1,20 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / shared/hooks/useRuntimePreviewUrl + +# shared/hooks/useRuntimePreviewUrl + +## Interfaces + +- [PickPreviewUrlOptions](interfaces/PickPreviewUrlOptions.md) +- [PickPreviewUrlResult](interfaces/PickPreviewUrlResult.md) +- [RuntimeLogLine](interfaces/RuntimeLogLine.md) +- [RuntimePreviewOptions](interfaces/RuntimePreviewOptions.md) +- [RuntimePreviewState](interfaces/RuntimePreviewState.md) + +## Functions + +- [pickPreviewUrl](functions/pickPreviewUrl.md) +- [useRuntimePreviewUrl](functions/useRuntimePreviewUrl.md) diff --git a/frontend/.typedoc/shared/hooks/useRuntimePreviewUrl/functions/pickPreviewUrl.md b/frontend/.typedoc/shared/hooks/useRuntimePreviewUrl/functions/pickPreviewUrl.md new file mode 100644 index 00000000..460f9421 --- /dev/null +++ b/frontend/.typedoc/shared/hooks/useRuntimePreviewUrl/functions/pickPreviewUrl.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/hooks/useRuntimePreviewUrl](../README.md) / pickPreviewUrl + +# Function: pickPreviewUrl() + +> **pickPreviewUrl**(`opts`): [`PickPreviewUrlResult`](../interfaces/PickPreviewUrlResult.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/hooks/useRuntimePreviewUrl.ts:123](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/hooks/useRuntimePreviewUrl.ts#L123) + +## Parameters + +### opts + +[`PickPreviewUrlOptions`](../interfaces/PickPreviewUrlOptions.md) + +## Returns + +[`PickPreviewUrlResult`](../interfaces/PickPreviewUrlResult.md) diff --git a/frontend/.typedoc/shared/hooks/useRuntimePreviewUrl/functions/useRuntimePreviewUrl.md b/frontend/.typedoc/shared/hooks/useRuntimePreviewUrl/functions/useRuntimePreviewUrl.md new file mode 100644 index 00000000..887a9cd4 --- /dev/null +++ b/frontend/.typedoc/shared/hooks/useRuntimePreviewUrl/functions/useRuntimePreviewUrl.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/hooks/useRuntimePreviewUrl](../README.md) / useRuntimePreviewUrl + +# Function: useRuntimePreviewUrl() + +> **useRuntimePreviewUrl**(`opts`): [`RuntimePreviewState`](../interfaces/RuntimePreviewState.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/hooks/useRuntimePreviewUrl.ts:26](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/hooks/useRuntimePreviewUrl.ts#L26) + +## Parameters + +### opts + +[`RuntimePreviewOptions`](../interfaces/RuntimePreviewOptions.md) + +## Returns + +[`RuntimePreviewState`](../interfaces/RuntimePreviewState.md) diff --git a/frontend/.typedoc/shared/hooks/useRuntimePreviewUrl/interfaces/PickPreviewUrlOptions.md b/frontend/.typedoc/shared/hooks/useRuntimePreviewUrl/interfaces/PickPreviewUrlOptions.md new file mode 100644 index 00000000..e238d842 --- /dev/null +++ b/frontend/.typedoc/shared/hooks/useRuntimePreviewUrl/interfaces/PickPreviewUrlOptions.md @@ -0,0 +1,43 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/hooks/useRuntimePreviewUrl](../README.md) / PickPreviewUrlOptions + +# Interface: PickPreviewUrlOptions + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/hooks/useRuntimePreviewUrl.ts:109](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/hooks/useRuntimePreviewUrl.ts#L109) + +## Properties + +### frontendUrl + +> **frontendUrl**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/hooks/useRuntimePreviewUrl.ts:113](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/hooks/useRuntimePreviewUrl.ts#L113) + +*** + +### isNewMode + +> **isNewMode**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/hooks/useRuntimePreviewUrl.ts:114](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/hooks/useRuntimePreviewUrl.ts#L114) + +*** + +### legacyUrl + +> **legacyUrl**: `string` \| `undefined` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/hooks/useRuntimePreviewUrl.ts:112](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/hooks/useRuntimePreviewUrl.ts#L112) + +Pre-new-mode URL the component used (serve/index.html); overridden by frontendUrl when ready. + +*** + +### workspaceId + +> **workspaceId**: `string` \| `null` \| `undefined` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/hooks/useRuntimePreviewUrl.ts:110](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/hooks/useRuntimePreviewUrl.ts#L110) diff --git a/frontend/.typedoc/shared/hooks/useRuntimePreviewUrl/interfaces/PickPreviewUrlResult.md b/frontend/.typedoc/shared/hooks/useRuntimePreviewUrl/interfaces/PickPreviewUrlResult.md new file mode 100644 index 00000000..165c6880 --- /dev/null +++ b/frontend/.typedoc/shared/hooks/useRuntimePreviewUrl/interfaces/PickPreviewUrlResult.md @@ -0,0 +1,27 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/hooks/useRuntimePreviewUrl](../README.md) / PickPreviewUrlResult + +# Interface: PickPreviewUrlResult + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/hooks/useRuntimePreviewUrl.ts:117](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/hooks/useRuntimePreviewUrl.ts#L117) + +## Properties + +### isBooting + +> **isBooting**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/hooks/useRuntimePreviewUrl.ts:120](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/hooks/useRuntimePreviewUrl.ts#L120) + +*** + +### url + +> **url**: `string` \| `undefined` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/hooks/useRuntimePreviewUrl.ts:119](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/hooks/useRuntimePreviewUrl.ts#L119) + +undefined => render placeholder (new-mode and Vite not bound yet). diff --git a/frontend/.typedoc/shared/hooks/useRuntimePreviewUrl/interfaces/RuntimeLogLine.md b/frontend/.typedoc/shared/hooks/useRuntimePreviewUrl/interfaces/RuntimeLogLine.md new file mode 100644 index 00000000..11f5b2ce --- /dev/null +++ b/frontend/.typedoc/shared/hooks/useRuntimePreviewUrl/interfaces/RuntimeLogLine.md @@ -0,0 +1,33 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/hooks/useRuntimePreviewUrl](../README.md) / RuntimeLogLine + +# Interface: RuntimeLogLine + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/hooks/useRuntimePreviewUrl.ts:6](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/hooks/useRuntimePreviewUrl.ts#L6) + +## Properties + +### source + +> **source**: `"backend"` \| `"runtime"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/hooks/useRuntimePreviewUrl.ts:7](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/hooks/useRuntimePreviewUrl.ts#L7) + +*** + +### stream + +> **stream**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/hooks/useRuntimePreviewUrl.ts:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/hooks/useRuntimePreviewUrl.ts#L8) + +*** + +### text + +> **text**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/hooks/useRuntimePreviewUrl.ts:9](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/hooks/useRuntimePreviewUrl.ts#L9) diff --git a/frontend/.typedoc/shared/hooks/useRuntimePreviewUrl/interfaces/RuntimePreviewOptions.md b/frontend/.typedoc/shared/hooks/useRuntimePreviewUrl/interfaces/RuntimePreviewOptions.md new file mode 100644 index 00000000..5b512eb5 --- /dev/null +++ b/frontend/.typedoc/shared/hooks/useRuntimePreviewUrl/interfaces/RuntimePreviewOptions.md @@ -0,0 +1,45 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/hooks/useRuntimePreviewUrl](../README.md) / RuntimePreviewOptions + +# Interface: RuntimePreviewOptions + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/hooks/useRuntimePreviewUrl.ts:19](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/hooks/useRuntimePreviewUrl.ts#L19) + +## Properties + +### enabled? + +> `optional` **enabled?**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/hooks/useRuntimePreviewUrl.ts:22](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/hooks/useRuntimePreviewUrl.ts#L22) + +Gate the spawn so callers can defer paying runtime cost until preview is wanted. + +*** + +### onLog? + +> `optional` **onLog?**: (`line`) => `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/hooks/useRuntimePreviewUrl.ts:23](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/hooks/useRuntimePreviewUrl.ts#L23) + +#### Parameters + +##### line + +[`RuntimeLogLine`](RuntimeLogLine.md) + +#### Returns + +`void` + +*** + +### workspaceId + +> **workspaceId**: `string` \| `null` \| `undefined` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/hooks/useRuntimePreviewUrl.ts:20](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/hooks/useRuntimePreviewUrl.ts#L20) diff --git a/frontend/.typedoc/shared/hooks/useRuntimePreviewUrl/interfaces/RuntimePreviewState.md b/frontend/.typedoc/shared/hooks/useRuntimePreviewUrl/interfaces/RuntimePreviewState.md new file mode 100644 index 00000000..bf51a2f5 --- /dev/null +++ b/frontend/.typedoc/shared/hooks/useRuntimePreviewUrl/interfaces/RuntimePreviewState.md @@ -0,0 +1,33 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/hooks/useRuntimePreviewUrl](../README.md) / RuntimePreviewState + +# Interface: RuntimePreviewState + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/hooks/useRuntimePreviewUrl.ts:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/hooks/useRuntimePreviewUrl.ts#L12) + +## Properties + +### frontendUrl + +> **frontendUrl**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/hooks/useRuntimePreviewUrl.ts:13](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/hooks/useRuntimePreviewUrl.ts#L13) + +*** + +### isHydrating + +> **isHydrating**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/hooks/useRuntimePreviewUrl.ts:16](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/hooks/useRuntimePreviewUrl.ts#L16) + +*** + +### isNewMode + +> **isNewMode**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/hooks/useRuntimePreviewUrl.ts:14](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/hooks/useRuntimePreviewUrl.ts#L14) diff --git a/frontend/.typedoc/shared/hooks/useWindowFocus/README.md b/frontend/.typedoc/shared/hooks/useWindowFocus/README.md new file mode 100644 index 00000000..d407c229 --- /dev/null +++ b/frontend/.typedoc/shared/hooks/useWindowFocus/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / shared/hooks/useWindowFocus + +# shared/hooks/useWindowFocus + +## Functions + +- [useWindowFocus](functions/useWindowFocus.md) diff --git a/frontend/.typedoc/shared/hooks/useWindowFocus/functions/useWindowFocus.md b/frontend/.typedoc/shared/hooks/useWindowFocus/functions/useWindowFocus.md new file mode 100644 index 00000000..6a9f6e52 --- /dev/null +++ b/frontend/.typedoc/shared/hooks/useWindowFocus/functions/useWindowFocus.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/hooks/useWindowFocus](../README.md) / useWindowFocus + +# Function: useWindowFocus() + +> **useWindowFocus**(): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/hooks/useWindowFocus.ts:15](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/hooks/useWindowFocus.ts#L15) + +## Returns + +`void` diff --git a/frontend/.typedoc/shared/hooks/variables/useAppSelector.md b/frontend/.typedoc/shared/hooks/variables/useAppSelector.md new file mode 100644 index 00000000..ae63e43f --- /dev/null +++ b/frontend/.typedoc/shared/hooks/variables/useAppSelector.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/hooks](../README.md) / useAppSelector + +# Variable: useAppSelector + +> `const` **useAppSelector**: `TypedUseSelectorHook`\<[`RootState`](../../state/store/type-aliases/RootState.md)\> = `useSelector` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/hooks.ts:5](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/hooks.ts#L5) diff --git a/frontend/.typedoc/shared/inputSchemaDefaults/README.md b/frontend/.typedoc/shared/inputSchemaDefaults/README.md new file mode 100644 index 00000000..68bb4145 --- /dev/null +++ b/frontend/.typedoc/shared/inputSchemaDefaults/README.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../README.md) + +*** + +[open-swarm](../../README.md) / shared/inputSchemaDefaults + +# shared/inputSchemaDefaults + +## Interfaces + +- [SchemaNode](interfaces/SchemaNode.md) + +## Functions + +- [getDefault](functions/getDefault.md) diff --git a/frontend/.typedoc/shared/inputSchemaDefaults/functions/getDefault.md b/frontend/.typedoc/shared/inputSchemaDefaults/functions/getDefault.md new file mode 100644 index 00000000..c65c1f0c --- /dev/null +++ b/frontend/.typedoc/shared/inputSchemaDefaults/functions/getDefault.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/inputSchemaDefaults](../README.md) / getDefault + +# Function: getDefault() + +> **getDefault**(`schema`): `any` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/inputSchemaDefaults.ts:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/inputSchemaDefaults.ts#L11) + +## Parameters + +### schema + +[`SchemaNode`](../interfaces/SchemaNode.md) + +## Returns + +`any` diff --git a/frontend/.typedoc/shared/inputSchemaDefaults/interfaces/SchemaNode.md b/frontend/.typedoc/shared/inputSchemaDefaults/interfaces/SchemaNode.md new file mode 100644 index 00000000..e8160085 --- /dev/null +++ b/frontend/.typedoc/shared/inputSchemaDefaults/interfaces/SchemaNode.md @@ -0,0 +1,65 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/inputSchemaDefaults](../README.md) / SchemaNode + +# Interface: SchemaNode + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/inputSchemaDefaults.ts:1](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/inputSchemaDefaults.ts#L1) + +## Properties + +### default? + +> `optional` **default?**: `any` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/inputSchemaDefaults.ts:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/inputSchemaDefaults.ts#L8) + +*** + +### description? + +> `optional` **description?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/inputSchemaDefaults.ts:7](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/inputSchemaDefaults.ts#L7) + +*** + +### enum? + +> `optional` **enum?**: `string`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/inputSchemaDefaults.ts:6](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/inputSchemaDefaults.ts#L6) + +*** + +### items? + +> `optional` **items?**: `SchemaNode` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/inputSchemaDefaults.ts:4](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/inputSchemaDefaults.ts#L4) + +*** + +### properties? + +> `optional` **properties?**: `Record`\<`string`, `SchemaNode`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/inputSchemaDefaults.ts:3](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/inputSchemaDefaults.ts#L3) + +*** + +### required? + +> `optional` **required?**: `string`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/inputSchemaDefaults.ts:5](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/inputSchemaDefaults.ts#L5) + +*** + +### type? + +> `optional` **type?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/inputSchemaDefaults.ts:2](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/inputSchemaDefaults.ts#L2) diff --git a/frontend/.typedoc/shared/interactiveRanking/README.md b/frontend/.typedoc/shared/interactiveRanking/README.md new file mode 100644 index 00000000..996ef60f --- /dev/null +++ b/frontend/.typedoc/shared/interactiveRanking/README.md @@ -0,0 +1,22 @@ +[**open-swarm**](../../README.md) + +*** + +[open-swarm](../../README.md) / shared/interactiveRanking + +# shared/interactiveRanking + +## Interfaces + +- [RankItem](interfaces/RankItem.md) +- [RankOptions](interfaces/RankOptions.md) +- [RankResult](interfaces/RankResult.md) + +## Variables + +- [DEFAULT\_INTERACTIVE\_CAP](variables/DEFAULT_INTERACTIVE_CAP.md) + +## Functions + +- [goalKeywords](functions/goalKeywords.md) +- [rankAndCapInteractives](functions/rankAndCapInteractives.md) diff --git a/frontend/.typedoc/shared/interactiveRanking/functions/goalKeywords.md b/frontend/.typedoc/shared/interactiveRanking/functions/goalKeywords.md new file mode 100644 index 00000000..561767c3 --- /dev/null +++ b/frontend/.typedoc/shared/interactiveRanking/functions/goalKeywords.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/interactiveRanking](../README.md) / goalKeywords + +# Function: goalKeywords() + +> **goalKeywords**(`goal`): `string`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/interactiveRanking.ts:80](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/interactiveRanking.ts#L80) + +## Parameters + +### goal + +`string` + +## Returns + +`string`[] diff --git a/frontend/.typedoc/shared/interactiveRanking/functions/rankAndCapInteractives.md b/frontend/.typedoc/shared/interactiveRanking/functions/rankAndCapInteractives.md new file mode 100644 index 00000000..b5ddf965 --- /dev/null +++ b/frontend/.typedoc/shared/interactiveRanking/functions/rankAndCapInteractives.md @@ -0,0 +1,25 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/interactiveRanking](../README.md) / rankAndCapInteractives + +# Function: rankAndCapInteractives() + +> **rankAndCapInteractives**(`items`, `opts?`): [`RankResult`](../interfaces/RankResult.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/interactiveRanking.ts:92](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/interactiveRanking.ts#L92) + +## Parameters + +### items + +[`RankItem`](../interfaces/RankItem.md)[] + +### opts? + +[`RankOptions`](../interfaces/RankOptions.md) = `{}` + +## Returns + +[`RankResult`](../interfaces/RankResult.md) diff --git a/frontend/.typedoc/shared/interactiveRanking/interfaces/RankItem.md b/frontend/.typedoc/shared/interactiveRanking/interfaces/RankItem.md new file mode 100644 index 00000000..cbf6aa92 --- /dev/null +++ b/frontend/.typedoc/shared/interactiveRanking/interfaces/RankItem.md @@ -0,0 +1,57 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/interactiveRanking](../README.md) / RankItem + +# Interface: RankItem + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/interactiveRanking.ts:9](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/interactiveRanking.ts#L9) + +## Properties + +### backendNodeId + +> **backendNodeId**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/interactiveRanking.ts:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/interactiveRanking.ts#L12) + +*** + +### context? + +> `optional` **context?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/interactiveRanking.ts:18](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/interactiveRanking.ts#L18) + +*** + +### name + +> **name**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/interactiveRanking.ts:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/interactiveRanking.ts#L11) + +*** + +### role + +> **role**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/interactiveRanking.ts:10](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/interactiveRanking.ts#L10) + +*** + +### sessionId? + +> `optional` **sessionId?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/interactiveRanking.ts:15](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/interactiveRanking.ts#L15) + +*** + +### value? + +> `optional` **value?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/interactiveRanking.ts:21](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/interactiveRanking.ts#L21) diff --git a/frontend/.typedoc/shared/interactiveRanking/interfaces/RankOptions.md b/frontend/.typedoc/shared/interactiveRanking/interfaces/RankOptions.md new file mode 100644 index 00000000..7e0931f9 --- /dev/null +++ b/frontend/.typedoc/shared/interactiveRanking/interfaces/RankOptions.md @@ -0,0 +1,25 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/interactiveRanking](../README.md) / RankOptions + +# Interface: RankOptions + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/interactiveRanking.ts:64](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/interactiveRanking.ts#L64) + +## Properties + +### cap? + +> `optional` **cap?**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/interactiveRanking.ts:65](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/interactiveRanking.ts#L65) + +*** + +### goal? + +> `optional` **goal?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/interactiveRanking.ts:68](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/interactiveRanking.ts#L68) diff --git a/frontend/.typedoc/shared/interactiveRanking/interfaces/RankResult.md b/frontend/.typedoc/shared/interactiveRanking/interfaces/RankResult.md new file mode 100644 index 00000000..a745f8b5 --- /dev/null +++ b/frontend/.typedoc/shared/interactiveRanking/interfaces/RankResult.md @@ -0,0 +1,25 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/interactiveRanking](../README.md) / RankResult + +# Interface: RankResult + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/interactiveRanking.ts:59](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/interactiveRanking.ts#L59) + +## Properties + +### shown + +> **shown**: [`RankItem`](RankItem.md)[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/interactiveRanking.ts:60](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/interactiveRanking.ts#L60) + +*** + +### truncated + +> **truncated**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/interactiveRanking.ts:61](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/interactiveRanking.ts#L61) diff --git a/frontend/.typedoc/shared/interactiveRanking/variables/DEFAULT_INTERACTIVE_CAP.md b/frontend/.typedoc/shared/interactiveRanking/variables/DEFAULT_INTERACTIVE_CAP.md new file mode 100644 index 00000000..2dc3ea15 --- /dev/null +++ b/frontend/.typedoc/shared/interactiveRanking/variables/DEFAULT_INTERACTIVE_CAP.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/interactiveRanking](../README.md) / DEFAULT\_INTERACTIVE\_CAP + +# Variable: DEFAULT\_INTERACTIVE\_CAP + +> `const` **DEFAULT\_INTERACTIVE\_CAP**: `60` = `60` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/interactiveRanking.ts:34](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/interactiveRanking.ts#L34) diff --git a/frontend/.typedoc/shared/mcpToolMeta/README.md b/frontend/.typedoc/shared/mcpToolMeta/README.md new file mode 100644 index 00000000..76fbc437 --- /dev/null +++ b/frontend/.typedoc/shared/mcpToolMeta/README.md @@ -0,0 +1,18 @@ +[**open-swarm**](../../README.md) + +*** + +[open-swarm](../../README.md) / shared/mcpToolMeta + +# shared/mcpToolMeta + +## Interfaces + +- [McpToolInfo](interfaces/McpToolInfo.md) + +## Functions + +- [getGmailHeader](functions/getGmailHeader.md) +- [getMcpInputSummary](functions/getMcpInputSummary.md) +- [getMcpShortAction](functions/getMcpShortAction.md) +- [parseMcpToolName](functions/parseMcpToolName.md) diff --git a/frontend/.typedoc/shared/mcpToolMeta/functions/getGmailHeader.md b/frontend/.typedoc/shared/mcpToolMeta/functions/getGmailHeader.md new file mode 100644 index 00000000..2d7aacd3 --- /dev/null +++ b/frontend/.typedoc/shared/mcpToolMeta/functions/getGmailHeader.md @@ -0,0 +1,25 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/mcpToolMeta](../README.md) / getGmailHeader + +# Function: getGmailHeader() + +> **getGmailHeader**(`msg`, `name`): `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/mcpToolMeta.ts:55](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/mcpToolMeta.ts#L55) + +## Parameters + +### msg + +`any` + +### name + +`string` + +## Returns + +`string` diff --git a/frontend/.typedoc/shared/mcpToolMeta/functions/getMcpInputSummary.md b/frontend/.typedoc/shared/mcpToolMeta/functions/getMcpInputSummary.md new file mode 100644 index 00000000..8146977a --- /dev/null +++ b/frontend/.typedoc/shared/mcpToolMeta/functions/getMcpInputSummary.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/mcpToolMeta](../README.md) / getMcpInputSummary + +# Function: getMcpInputSummary() + +> **getMcpInputSummary**(`input`): `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/mcpToolMeta.ts:29](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/mcpToolMeta.ts#L29) + +## Parameters + +### input + +`any` + +## Returns + +`string` diff --git a/frontend/.typedoc/shared/mcpToolMeta/functions/getMcpShortAction.md b/frontend/.typedoc/shared/mcpToolMeta/functions/getMcpShortAction.md new file mode 100644 index 00000000..ad9cb216 --- /dev/null +++ b/frontend/.typedoc/shared/mcpToolMeta/functions/getMcpShortAction.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/mcpToolMeta](../README.md) / getMcpShortAction + +# Function: getMcpShortAction() + +> **getMcpShortAction**(`mcpInfo`): `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/mcpToolMeta.ts:45](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/mcpToolMeta.ts#L45) + +## Parameters + +### mcpInfo + +[`McpToolInfo`](../interfaces/McpToolInfo.md) + +## Returns + +`string` diff --git a/frontend/.typedoc/shared/mcpToolMeta/functions/parseMcpToolName.md b/frontend/.typedoc/shared/mcpToolMeta/functions/parseMcpToolName.md new file mode 100644 index 00000000..c822a3fa --- /dev/null +++ b/frontend/.typedoc/shared/mcpToolMeta/functions/parseMcpToolName.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/mcpToolMeta](../README.md) / parseMcpToolName + +# Function: parseMcpToolName() + +> **parseMcpToolName**(`rawName`): [`McpToolInfo`](../interfaces/McpToolInfo.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/mcpToolMeta.ts:9](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/mcpToolMeta.ts#L9) + +## Parameters + +### rawName + +`string` + +## Returns + +[`McpToolInfo`](../interfaces/McpToolInfo.md) diff --git a/frontend/.typedoc/shared/mcpToolMeta/interfaces/McpToolInfo.md b/frontend/.typedoc/shared/mcpToolMeta/interfaces/McpToolInfo.md new file mode 100644 index 00000000..90386b8c --- /dev/null +++ b/frontend/.typedoc/shared/mcpToolMeta/interfaces/McpToolInfo.md @@ -0,0 +1,49 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/mcpToolMeta](../README.md) / McpToolInfo + +# Interface: McpToolInfo + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/mcpToolMeta.ts:1](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/mcpToolMeta.ts#L1) + +## Properties + +### action + +> **action**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/mcpToolMeta.ts:4](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/mcpToolMeta.ts#L4) + +*** + +### displayName + +> **displayName**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/mcpToolMeta.ts:6](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/mcpToolMeta.ts#L6) + +*** + +### isMcp + +> **isMcp**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/mcpToolMeta.ts:2](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/mcpToolMeta.ts#L2) + +*** + +### serverSlug + +> **serverSlug**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/mcpToolMeta.ts:3](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/mcpToolMeta.ts#L3) + +*** + +### service + +> **service**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/mcpToolMeta.ts:5](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/mcpToolMeta.ts#L5) diff --git a/frontend/.typedoc/shared/migrations/README.md b/frontend/.typedoc/shared/migrations/README.md new file mode 100644 index 00000000..10bc9642 --- /dev/null +++ b/frontend/.typedoc/shared/migrations/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../README.md) + +*** + +[open-swarm](../../README.md) / shared/migrations + +# shared/migrations + +## Functions + +- [runStartupMigrations](functions/runStartupMigrations.md) diff --git a/frontend/.typedoc/shared/migrations/functions/runStartupMigrations.md b/frontend/.typedoc/shared/migrations/functions/runStartupMigrations.md new file mode 100644 index 00000000..6109dd40 --- /dev/null +++ b/frontend/.typedoc/shared/migrations/functions/runStartupMigrations.md @@ -0,0 +1,17 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/migrations](../README.md) / runStartupMigrations + +# Function: runStartupMigrations() + +> **runStartupMigrations**(): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/migrations.ts:27](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/migrations.ts#L27) + +Run migrations that haven't fired on this install yet. Idempotent. + +## Returns + +`void` diff --git a/frontend/.typedoc/shared/modals/UnderConstruction/UnderConstruction/README.md b/frontend/.typedoc/shared/modals/UnderConstruction/UnderConstruction/README.md new file mode 100644 index 00000000..f26e029b --- /dev/null +++ b/frontend/.typedoc/shared/modals/UnderConstruction/UnderConstruction/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / shared/modals/UnderConstruction/UnderConstruction + +# shared/modals/UnderConstruction/UnderConstruction + +## Functions + +- [UnderConstruction](functions/UnderConstruction.md) diff --git a/frontend/.typedoc/shared/modals/UnderConstruction/UnderConstruction/functions/UnderConstruction.md b/frontend/.typedoc/shared/modals/UnderConstruction/UnderConstruction/functions/UnderConstruction.md new file mode 100644 index 00000000..5d6d742d --- /dev/null +++ b/frontend/.typedoc/shared/modals/UnderConstruction/UnderConstruction/functions/UnderConstruction.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../../README.md) + +*** + +[open-swarm](../../../../../README.md) / [shared/modals/UnderConstruction/UnderConstruction](../README.md) / UnderConstruction + +# Function: UnderConstruction() + +> **UnderConstruction**(): `Element` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/modals/UnderConstruction/UnderConstruction.tsx:5](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/modals/UnderConstruction/UnderConstruction.tsx#L5) + +## Returns + +`Element` diff --git a/frontend/.typedoc/shared/notifications/README.md b/frontend/.typedoc/shared/notifications/README.md new file mode 100644 index 00000000..1605ffa2 --- /dev/null +++ b/frontend/.typedoc/shared/notifications/README.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../README.md) + +*** + +[open-swarm](../../README.md) / shared/notifications + +# shared/notifications + +## Interfaces + +- [AgentCompletionPayload](interfaces/AgentCompletionPayload.md) + +## Functions + +- [notifyAgentCompletion](functions/notifyAgentCompletion.md) diff --git a/frontend/.typedoc/shared/notifications/functions/notifyAgentCompletion.md b/frontend/.typedoc/shared/notifications/functions/notifyAgentCompletion.md new file mode 100644 index 00000000..cec8ed48 --- /dev/null +++ b/frontend/.typedoc/shared/notifications/functions/notifyAgentCompletion.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/notifications](../README.md) / notifyAgentCompletion + +# Function: notifyAgentCompletion() + +> **notifyAgentCompletion**(`p`): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/notifications.ts:26](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/notifications.ts#L26) + +## Parameters + +### p + +[`AgentCompletionPayload`](../interfaces/AgentCompletionPayload.md) + +## Returns + +`void` diff --git a/frontend/.typedoc/shared/notifications/interfaces/AgentCompletionPayload.md b/frontend/.typedoc/shared/notifications/interfaces/AgentCompletionPayload.md new file mode 100644 index 00000000..13b834c2 --- /dev/null +++ b/frontend/.typedoc/shared/notifications/interfaces/AgentCompletionPayload.md @@ -0,0 +1,49 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/notifications](../README.md) / AgentCompletionPayload + +# Interface: AgentCompletionPayload + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/notifications.ts:18](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/notifications.ts#L18) + +## Properties + +### bodyExcerpt? + +> `optional` **bodyExcerpt?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/notifications.ts:23](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/notifications.ts#L23) + +*** + +### dashboardId? + +> `optional` **dashboardId?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/notifications.ts:21](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/notifications.ts#L21) + +*** + +### sessionId + +> **sessionId**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/notifications.ts:19](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/notifications.ts#L19) + +*** + +### sessionName + +> **sessionName**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/notifications.ts:20](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/notifications.ts#L20) + +*** + +### status + +> **status**: `"completed"` \| `"error"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/notifications.ts:22](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/notifications.ts#L22) diff --git a/frontend/.typedoc/shared/previewOrder/README.md b/frontend/.typedoc/shared/previewOrder/README.md new file mode 100644 index 00000000..cc8647ed --- /dev/null +++ b/frontend/.typedoc/shared/previewOrder/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../README.md) + +*** + +[open-swarm](../../README.md) / shared/previewOrder + +# shared/previewOrder + +## Functions + +- [byPreviewRecency](functions/byPreviewRecency.md) diff --git a/frontend/.typedoc/shared/previewOrder/functions/byPreviewRecency.md b/frontend/.typedoc/shared/previewOrder/functions/byPreviewRecency.md new file mode 100644 index 00000000..a3fbd8b1 --- /dev/null +++ b/frontend/.typedoc/shared/previewOrder/functions/byPreviewRecency.md @@ -0,0 +1,29 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/previewOrder](../README.md) / byPreviewRecency + +# Function: byPreviewRecency() + +> **byPreviewRecency**(`a`, `b`): `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/previewOrder.ts:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/previewOrder.ts#L11) + +Newest screenshot first. Apps/dashboards never screenshotted yet fall back to +their creation time, so they hold a stable spot until their first shot instead +of jumping around on every incidental save. + +## Parameters + +### a + +`PreviewSortable` + +### b + +`PreviewSortable` + +## Returns + +`number` diff --git a/frontend/.typedoc/shared/resolveUrl/README.md b/frontend/.typedoc/shared/resolveUrl/README.md new file mode 100644 index 00000000..b638e93a --- /dev/null +++ b/frontend/.typedoc/shared/resolveUrl/README.md @@ -0,0 +1,12 @@ +[**open-swarm**](../../README.md) + +*** + +[open-swarm](../../README.md) / shared/resolveUrl + +# shared/resolveUrl + +## Functions + +- [isGoogleSearch](functions/isGoogleSearch.md) +- [resolveInput](functions/resolveInput.md) diff --git a/frontend/.typedoc/shared/resolveUrl/functions/isGoogleSearch.md b/frontend/.typedoc/shared/resolveUrl/functions/isGoogleSearch.md new file mode 100644 index 00000000..c3159d92 --- /dev/null +++ b/frontend/.typedoc/shared/resolveUrl/functions/isGoogleSearch.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/resolveUrl](../README.md) / isGoogleSearch + +# Function: isGoogleSearch() + +> **isGoogleSearch**(`url`): `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/resolveUrl.ts:15](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/resolveUrl.ts#L15) + +## Parameters + +### url + +`string` + +## Returns + +`boolean` diff --git a/frontend/.typedoc/shared/resolveUrl/functions/resolveInput.md b/frontend/.typedoc/shared/resolveUrl/functions/resolveInput.md new file mode 100644 index 00000000..5c379248 --- /dev/null +++ b/frontend/.typedoc/shared/resolveUrl/functions/resolveInput.md @@ -0,0 +1,23 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/resolveUrl](../README.md) / resolveInput + +# Function: resolveInput() + +> **resolveInput**(`input`): `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/resolveUrl.ts:2](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/resolveUrl.ts#L2) + +Resolve raw URL-bar input to a navigable URL (scheme passthrough, file paths, domains, Google fallback). + +## Parameters + +### input + +`string` + +## Returns + +`string` diff --git a/frontend/.typedoc/shared/sanitizeSvg/README.md b/frontend/.typedoc/shared/sanitizeSvg/README.md new file mode 100644 index 00000000..e73399e9 --- /dev/null +++ b/frontend/.typedoc/shared/sanitizeSvg/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../README.md) + +*** + +[open-swarm](../../README.md) / shared/sanitizeSvg + +# shared/sanitizeSvg + +## Functions + +- [sanitizeSvgString](functions/sanitizeSvgString.md) diff --git a/frontend/.typedoc/shared/sanitizeSvg/functions/sanitizeSvgString.md b/frontend/.typedoc/shared/sanitizeSvg/functions/sanitizeSvgString.md new file mode 100644 index 00000000..e55705b9 --- /dev/null +++ b/frontend/.typedoc/shared/sanitizeSvg/functions/sanitizeSvgString.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/sanitizeSvg](../README.md) / sanitizeSvgString + +# Function: sanitizeSvgString() + +> **sanitizeSvgString**(`raw`): `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/sanitizeSvg.ts:9](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/sanitizeSvg.ts#L9) + +## Parameters + +### raw + +`string` + +## Returns + +`string` diff --git a/frontend/.typedoc/shared/serviceClient/README.md b/frontend/.typedoc/shared/serviceClient/README.md new file mode 100644 index 00000000..448486da --- /dev/null +++ b/frontend/.typedoc/shared/serviceClient/README.md @@ -0,0 +1,18 @@ +[**open-swarm**](../../README.md) + +*** + +[open-swarm](../../README.md) / shared/serviceClient + +# shared/serviceClient + +## Variables + +- [default](variables/default.md) + +## Functions + +- [getRecentActions](functions/getRecentActions.md) +- [getSessionTraceState](functions/getSessionTraceState.md) +- [report](functions/report.md) +- [sync](functions/sync.md) diff --git a/frontend/.typedoc/shared/serviceClient/functions/getRecentActions.md b/frontend/.typedoc/shared/serviceClient/functions/getRecentActions.md new file mode 100644 index 00000000..b396bdcc --- /dev/null +++ b/frontend/.typedoc/shared/serviceClient/functions/getRecentActions.md @@ -0,0 +1,23 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/serviceClient](../README.md) / getRecentActions + +# Function: getRecentActions() + +> **getRecentActions**(`limit?`): `object`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/serviceClient.ts:33](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/serviceClient.ts#L33) + +Snapshot recent report() entries for breadcrumb context in error paths. + +## Parameters + +### limit? + +`number` = `10` + +## Returns + +`object`[] diff --git a/frontend/.typedoc/shared/serviceClient/functions/getSessionTraceState.md b/frontend/.typedoc/shared/serviceClient/functions/getSessionTraceState.md new file mode 100644 index 00000000..d3e6ae8f --- /dev/null +++ b/frontend/.typedoc/shared/serviceClient/functions/getSessionTraceState.md @@ -0,0 +1,27 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/serviceClient](../README.md) / getSessionTraceState + +# Function: getSessionTraceState() + +> **getSessionTraceState**(): `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/serviceClient.ts:90](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/serviceClient.ts#L90) + +## Returns + +`object` + +### appStartTs + +> **appStartTs**: `number` + +### currentPage + +> **currentPage**: `string` + +### lastTs + +> **lastTs**: `number` diff --git a/frontend/.typedoc/shared/serviceClient/functions/report.md b/frontend/.typedoc/shared/serviceClient/functions/report.md new file mode 100644 index 00000000..de434bef --- /dev/null +++ b/frontend/.typedoc/shared/serviceClient/functions/report.md @@ -0,0 +1,37 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/serviceClient](../README.md) / report + +# Function: report() + +> **report**(`surface`, `action`, `props?`, `opts?`): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/serviceClient.ts:80](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/serviceClient.ts#L80) + +Ship-an-event helper: same wire shape as sync(), reads as a UI surface verb in callers. + +## Parameters + +### surface + +`string` + +### action + +`string` + +### props? + +`Record`\<`string`, `unknown`\> + +### opts? + +#### immediate? + +`boolean` + +## Returns + +`void` diff --git a/frontend/.typedoc/shared/serviceClient/functions/sync.md b/frontend/.typedoc/shared/serviceClient/functions/sync.md new file mode 100644 index 00000000..ecf1cfa1 --- /dev/null +++ b/frontend/.typedoc/shared/serviceClient/functions/sync.md @@ -0,0 +1,27 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/serviceClient](../README.md) / sync + +# Function: sync() + +> **sync**(`data?`, `opts?`): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/serviceClient.ts:57](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/serviceClient.ts#L57) + +## Parameters + +### data? + +`Record`\<`string`, `unknown`\> = `{}` + +### opts? + +#### immediate? + +`boolean` + +## Returns + +`void` diff --git a/frontend/.typedoc/shared/serviceClient/variables/default.md b/frontend/.typedoc/shared/serviceClient/variables/default.md new file mode 100644 index 00000000..8cc613f7 --- /dev/null +++ b/frontend/.typedoc/shared/serviceClient/variables/default.md @@ -0,0 +1,99 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/serviceClient](../README.md) / default + +# Variable: default + +> `const` **default**: `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/serviceClient.ts:102](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/serviceClient.ts#L102) + +## Type Declaration + +### getRecentActions + +> **getRecentActions**: (`limit`) => `object`[] + +Snapshot recent report() entries for breadcrumb context in error paths. + +#### Parameters + +##### limit? + +`number` = `10` + +#### Returns + +`object`[] + +### getSessionTraceState + +> **getSessionTraceState**: () => `object` + +#### Returns + +`object` + +##### appStartTs + +> **appStartTs**: `number` + +##### currentPage + +> **currentPage**: `string` + +##### lastTs + +> **lastTs**: `number` + +### report + +> **report**: (`surface`, `action`, `props?`, `opts`) => `void` + +Ship-an-event helper: same wire shape as sync(), reads as a UI surface verb in callers. + +#### Parameters + +##### surface + +`string` + +##### action + +`string` + +##### props? + +`Record`\<`string`, `unknown`\> + +##### opts? + +###### immediate? + +`boolean` + +#### Returns + +`void` + +### sync + +> **sync**: (`data`, `opts`) => `void` + +#### Parameters + +##### data? + +`Record`\<`string`, `unknown`\> = `{}` + +##### opts? + +###### immediate? + +`boolean` + +#### Returns + +`void` diff --git a/frontend/.typedoc/shared/state/agentsSlice/README.md b/frontend/.typedoc/shared/state/agentsSlice/README.md new file mode 100644 index 00000000..b5c97cbb --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/README.md @@ -0,0 +1,91 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / shared/state/agentsSlice + +# shared/state/agentsSlice + +## Interfaces + +- [AgentConfig](interfaces/AgentConfig.md) +- [AgentMessage](interfaces/AgentMessage.md) +- [AgentSession](interfaces/AgentSession.md) +- [ApprovalRequest](interfaces/ApprovalRequest.md) +- [GenerateGroupMetaPayload](interfaces/GenerateGroupMetaPayload.md) +- [HistorySession](interfaces/HistorySession.md) +- [LaunchAndSendPayload](interfaces/LaunchAndSendPayload.md) +- [MessageBranch](interfaces/MessageBranch.md) +- [SearchHistoryParams](interfaces/SearchHistoryParams.md) +- [SendMessagePayload](interfaces/SendMessagePayload.md) +- [ToolGroupMeta](interfaces/ToolGroupMeta.md) + +## Variables + +- [addApprovalRequest](variables/addApprovalRequest.md) +- [addBranch](variables/addBranch.md) +- [addMessage](variables/addMessage.md) +- [addOptimisticMessage](variables/addOptimisticMessage.md) +- [clearContextOverflow](variables/clearContextOverflow.md) +- [clearHistorySearch](variables/clearHistorySearch.md) +- [clearMcpSuggestions](variables/clearMcpSuggestions.md) +- [clearSessionMessages](variables/clearSessionMessages.md) +- [clearTurnLabel](variables/clearTurnLabel.md) +- [closeSession](variables/closeSession.md) +- [closeSessionFromWs](variables/closeSessionFromWs.md) +- [collapseAllSessions](variables/collapseAllSessions.md) +- [collapseSession](variables/collapseSession.md) +- [createDraftSession](variables/createDraftSession.md) +- [default](variables/default.md) +- [deleteSession](variables/deleteSession.md) +- [dismissAgentNotification](variables/dismissAgentNotification.md) +- [dismissAllFinishedNotifications](variables/dismissAllFinishedNotifications.md) +- [duplicateSession](variables/duplicateSession.md) +- [editMessage](variables/editMessage.md) +- [expandSession](variables/expandSession.md) +- [fetchBrowserAgentChildren](variables/fetchBrowserAgentChildren.md) +- [fetchHistory](variables/fetchHistory.md) +- [fetchSession](variables/fetchSession.md) +- [fetchSessions](variables/fetchSessions.md) +- [generateGroupMeta](variables/generateGroupMeta.md) +- [generateTitle](variables/generateTitle.md) +- [handleApproval](variables/handleApproval.md) +- [launchAgent](variables/launchAgent.md) +- [launchAndSendFirstMessage](variables/launchAndSendFirstMessage.md) +- [markOptimisticFailed](variables/markOptimisticFailed.md) +- [recordCompaction](variables/recordCompaction.md) +- [removeApprovalRequest](variables/removeApprovalRequest.md) +- [removeDraftSession](variables/removeDraftSession.md) +- [resumeSession](variables/resumeSession.md) +- [searchHistory](variables/searchHistory.md) +- [sendMessage](variables/sendMessage.md) +- [setActiveBranch](variables/setActiveBranch.md) +- [setActiveSession](variables/setActiveSession.md) +- [setContextOverflow](variables/setContextOverflow.md) +- [setDraftSystemPrompt](variables/setDraftSystemPrompt.md) +- [setExpandedSessionIds](variables/setExpandedSessionIds.md) +- [setMcpSuggestions](variables/setMcpSuggestions.md) +- [setSessionConnState](variables/setSessionConnState.md) +- [setTurnLabel](variables/setTurnLabel.md) +- [stopAgent](variables/stopAgent.md) +- [switchBranch](variables/switchBranch.md) +- [toggleExpandSession](variables/toggleExpandSession.md) +- [trackAgentNotification](variables/trackAgentNotification.md) +- [updateGroupMeta](variables/updateGroupMeta.md) +- [updateSession](variables/updateSession.md) +- [updateSessionContext](variables/updateSessionContext.md) +- [updateSessionCost](variables/updateSessionCost.md) +- [updateSessionMode](variables/updateSessionMode.md) +- [updateSessionModel](variables/updateSessionModel.md) +- [updateSessionName](variables/updateSessionName.md) +- [updateSessionProvider](variables/updateSessionProvider.md) +- [updateSessionStatus](variables/updateSessionStatus.md) +- [updateSessionThinkingLevel](variables/updateSessionThinkingLevel.md) +- [updateSystemPrompt](variables/updateSystemPrompt.md) +- [updateThinkingLevel](variables/updateThinkingLevel.md) + +## References + +### StreamingMessage + +Re-exports [StreamingMessage](../streamingSlice/interfaces/StreamingMessage.md) diff --git a/frontend/.typedoc/shared/state/agentsSlice/interfaces/AgentConfig.md b/frontend/.typedoc/shared/state/agentsSlice/interfaces/AgentConfig.md new file mode 100644 index 00000000..756212b3 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/interfaces/AgentConfig.md @@ -0,0 +1,81 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / AgentConfig + +# Interface: AgentConfig + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:105](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L105) + +## Properties + +### allowed\_tools? + +> `optional` **allowed\_tools?**: `string`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:111](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L111) + +*** + +### dashboard\_id? + +> `optional` **dashboard\_id?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:114](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L114) + +*** + +### max\_turns? + +> `optional` **max\_turns?**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:112](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L112) + +*** + +### mode? + +> `optional` **mode?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:109](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L109) + +*** + +### model? + +> `optional` **model?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:108](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L108) + +*** + +### name? + +> `optional` **name?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:106](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L106) + +*** + +### provider? + +> `optional` **provider?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:107](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L107) + +*** + +### system\_prompt? + +> `optional` **system\_prompt?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:110](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L110) + +*** + +### target\_directory? + +> `optional` **target\_directory?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:113](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L113) diff --git a/frontend/.typedoc/shared/state/agentsSlice/interfaces/AgentMessage.md b/frontend/.typedoc/shared/state/agentsSlice/interfaces/AgentMessage.md new file mode 100644 index 00000000..196a381e --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/interfaces/AgentMessage.md @@ -0,0 +1,177 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / AgentMessage + +# Interface: AgentMessage + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:6](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L6) + +## Properties + +### attached\_skills? + +> `optional` **attached\_skills?**: `object`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:14](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L14) + +#### id + +> **id**: `string` + +#### name + +> **name**: `string` + +*** + +### branch\_id + +> **branch\_id**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L11) + +*** + +### client\_message\_id? + +> `optional` **client\_message\_id?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:19](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L19) + +Round-tripped optimistic-bubble id; addMessage dedupes the echo against the placeholder. + +*** + +### content + +> **content**: `any` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:9](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L9) + +*** + +### context\_paths? + +> `optional` **context\_paths?**: `object`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:13](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L13) + +#### path + +> **path**: `string` + +#### type + +> **type**: `string` + +*** + +### elapsed\_ms? + +> `optional` **elapsed\_ms?**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:23](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L23) + +Server-stamped duration/token counts; today only thinking messages set these. + +*** + +### forced\_tools? + +> `optional` **forced\_tools?**: `string`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:15](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L15) + +*** + +### hidden? + +> `optional` **hidden?**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:17](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L17) + +*** + +### id + +> **id**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:7](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L7) + +*** + +### images? + +> `optional` **images?**: `object`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:16](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L16) + +#### data + +> **data**: `string` + +#### media\_type + +> **media\_type**: `string` + +*** + +### input\_tokens? + +> `optional` **input\_tokens?**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:26](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L26) + +Input-side token count for the turn (fresh + cache_creation + cache_read). + +*** + +### optimistic\_status? + +> `optional` **optimistic\_status?**: `"pending"` \| `"failed"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:21](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L21) + +Frontend-only optimistic lifecycle; dropped on server-echoed messages. + +*** + +### parent\_id + +> **parent\_id**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L12) + +*** + +### role + +> **role**: `"user"` \| `"assistant"` \| `"tool_call"` \| `"tool_result"` \| `"system"` \| `"thinking"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L8) + +*** + +### timestamp + +> **timestamp**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:10](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L10) + +*** + +### tokens? + +> `optional` **tokens?**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:24](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L24) + +*** + +### tool\_count? + +> `optional` **tool\_count?**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:27](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L27) diff --git a/frontend/.typedoc/shared/state/agentsSlice/interfaces/AgentSession.md b/frontend/.typedoc/shared/state/agentsSlice/interfaces/AgentSession.md new file mode 100644 index 00000000..82226cd6 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/interfaces/AgentSession.md @@ -0,0 +1,359 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / AgentSession + +# Interface: AgentSession + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:58](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L58) + +## Properties + +### active\_branch\_id + +> **active\_branch\_id**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:78](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L78) + +*** + +### active\_mcps? + +> `optional` **active\_mcps?**: `string`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:89](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L89) + +*** + +### allowed\_tools + +> **allowed\_tools**: `string`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:69](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L69) + +*** + +### branch\_name + +> **branch\_name**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:66](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L66) + +*** + +### branches + +> **branches**: `Record`\<`string`, [`MessageBranch`](MessageBranch.md)\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:77](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L77) + +*** + +### browser\_id? + +> `optional` **browser\_id?**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:83](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L83) + +*** + +### cache\_read\_pct? + +> `optional` **cache\_read\_pct?**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:91](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L91) + +*** + +### cache\_read\_tokens? + +> `optional` **cache\_read\_tokens?**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:92](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L92) + +*** + +### closed\_at? + +> `optional` **closed\_at?**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:72](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L72) + +*** + +### compacted\_through\_msg\_id? + +> `optional` **compacted\_through\_msg\_id?**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:98](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L98) + +*** + +### connection\_state? + +> `optional` **connection\_state?**: `"live"` \| `"reconnecting"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:100](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L100) + +Frontend-only WS state, decoupled from session.status so reconnects don't fake terminal states. + +*** + +### context\_overflow? + +> `optional` **context\_overflow?**: \{ `at`: `string`; `message`: `string`; `reason`: `string`; \} \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:95](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L95) + +*** + +### context\_window? + +> `optional` **context\_window?**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:93](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L93) + +*** + +### cost\_usd + +> **cost\_usd**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:73](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L73) + +*** + +### created\_at + +> **created\_at**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:71](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L71) + +*** + +### ctx\_used\_pct? + +> `optional` **ctx\_used\_pct?**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:90](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L90) + +*** + +### dashboard\_id? + +> `optional` **dashboard\_id?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:82](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L82) + +*** + +### framework\_overhead\_tokens? + +> `optional` **framework\_overhead\_tokens?**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:94](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L94) + +*** + +### id + +> **id**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:59](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L59) + +*** + +### max\_turns + +> **max\_turns**: `number` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:70](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L70) + +*** + +### mcp\_suggestions? + +> `optional` **mcp\_suggestions?**: `object`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:96](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L96) + +#### description + +> **description**: `string` + +#### id + +> **id**: `string` + +#### reason? + +> `optional` **reason?**: `string` + +#### title + +> **title**: `string` + +*** + +### mcp\_suggestions\_is\_vague? + +> `optional` **mcp\_suggestions\_is\_vague?**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:97](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L97) + +*** + +### memory\_learned? + +> `optional` **memory\_learned?**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:87](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L87) + +*** + +### memory\_recalled? + +> `optional` **memory\_recalled?**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:86](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L86) + +Browser memory signals that drive the subtle "Remembered"/"Learned" card chip. + +*** + +### messages + +> **messages**: [`AgentMessage`](AgentMessage.md)[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:75](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L75) + +*** + +### mode + +> **mode**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:64](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L64) + +*** + +### model + +> **model**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:63](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L63) + +*** + +### name + +> **name**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:60](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L60) + +*** + +### parent\_session\_id? + +> `optional` **parent\_session\_id?**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:84](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L84) + +*** + +### pending\_approvals + +> **pending\_approvals**: [`ApprovalRequest`](ApprovalRequest.md)[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:76](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L76) + +*** + +### provider + +> **provider**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:62](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L62) + +*** + +### sdk\_session\_id + +> **sdk\_session\_id**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:67](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L67) + +*** + +### status + +> **status**: `"draft"` \| `"running"` \| `"waiting_approval"` \| `"completed"` \| `"error"` \| `"stopped"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:61](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L61) + +*** + +### system\_prompt + +> **system\_prompt**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:68](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L68) + +*** + +### target\_directory? + +> `optional` **target\_directory?**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:80](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L80) + +*** + +### thinking\_level? + +> `optional` **thinking\_level?**: `"off"` \| `"low"` \| `"medium"` \| `"high"` \| `"auto"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:88](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L88) + +*** + +### tokens + +> **tokens**: `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:74](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L74) + +#### input + +> **input**: `number` + +#### output + +> **output**: `number` + +*** + +### tool\_group\_meta + +> **tool\_group\_meta**: `Record`\<`string`, [`ToolGroupMeta`](ToolGroupMeta.md)\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:81](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L81) + +*** + +### turn\_label? + +> `optional` **turn\_label?**: \{ `label`: `string`; `turn_id`: `string`; \} \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:102](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L102) + +Aux-LLM verb-phrase for the current turn; ThinkingBubble swaps in then back when turn ends. + +*** + +### worktree\_path + +> **worktree\_path**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:65](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L65) diff --git a/frontend/.typedoc/shared/state/agentsSlice/interfaces/ApprovalRequest.md b/frontend/.typedoc/shared/state/agentsSlice/interfaces/ApprovalRequest.md new file mode 100644 index 00000000..c5dbf3e4 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/interfaces/ApprovalRequest.md @@ -0,0 +1,73 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / ApprovalRequest + +# Interface: ApprovalRequest + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:30](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L30) + +## Properties + +### created\_at + +> **created\_at**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:35](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L35) + +*** + +### id + +> **id**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:31](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L31) + +*** + +### sensitive\_label? + +> `optional` **sensitive\_label?**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:37](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L37) + +*** + +### sensitive\_pattern? + +> `optional` **sensitive\_pattern?**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:36](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L36) + +*** + +### sensitive\_why? + +> `optional` **sensitive\_why?**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:38](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L38) + +*** + +### session\_id + +> **session\_id**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:32](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L32) + +*** + +### tool\_input + +> **tool\_input**: `Record`\<`string`, `any`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:34](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L34) + +*** + +### tool\_name + +> **tool\_name**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:33](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L33) diff --git a/frontend/.typedoc/shared/state/agentsSlice/interfaces/GenerateGroupMetaPayload.md b/frontend/.typedoc/shared/state/agentsSlice/interfaces/GenerateGroupMetaPayload.md new file mode 100644 index 00000000..95bd62dd --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/interfaces/GenerateGroupMetaPayload.md @@ -0,0 +1,57 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / GenerateGroupMetaPayload + +# Interface: GenerateGroupMetaPayload + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:339](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L339) + +## Properties + +### groupId + +> **groupId**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:341](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L341) + +*** + +### isRefinement? + +> `optional` **isRefinement?**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:344](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L344) + +*** + +### resultsSummary? + +> `optional` **resultsSummary?**: `string`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:343](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L343) + +*** + +### sessionId + +> **sessionId**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:340](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L340) + +*** + +### toolCalls + +> **toolCalls**: `object`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:342](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L342) + +#### input\_summary + +> **input\_summary**: `string` + +#### tool + +> **tool**: `string` diff --git a/frontend/.typedoc/shared/state/agentsSlice/interfaces/HistorySession.md b/frontend/.typedoc/shared/state/agentsSlice/interfaces/HistorySession.md new file mode 100644 index 00000000..e30771d8 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/interfaces/HistorySession.md @@ -0,0 +1,81 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / HistorySession + +# Interface: HistorySession + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:117](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L117) + +## Properties + +### closed\_at + +> **closed\_at**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:124](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L124) + +*** + +### cost\_usd + +> **cost\_usd**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:125](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L125) + +*** + +### created\_at + +> **created\_at**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:123](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L123) + +*** + +### dashboard\_id? + +> `optional` **dashboard\_id?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:126](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L126) + +*** + +### id + +> **id**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:118](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L118) + +*** + +### mode + +> **mode**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:122](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L122) + +*** + +### model + +> **model**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:121](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L121) + +*** + +### name + +> **name**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:119](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L119) + +*** + +### status + +> **status**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:120](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L120) diff --git a/frontend/.typedoc/shared/state/agentsSlice/interfaces/LaunchAndSendPayload.md b/frontend/.typedoc/shared/state/agentsSlice/interfaces/LaunchAndSendPayload.md new file mode 100644 index 00000000..a605367e --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/interfaces/LaunchAndSendPayload.md @@ -0,0 +1,141 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / LaunchAndSendPayload + +# Interface: LaunchAndSendPayload + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:267](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L267) + +## Properties + +### attachedSkills? + +> `optional` **attachedSkills?**: `object`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:277](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L277) + +#### content + +> **content**: `string` + +#### id + +> **id**: `string` + +#### name + +> **name**: `string` + +*** + +### config + +> **config**: [`AgentConfig`](AgentConfig.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:269](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L269) + +*** + +### contextPaths? + +> `optional` **contextPaths?**: `object`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:275](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L275) + +#### path + +> **path**: `string` + +#### type + +> **type**: `"file"` \| `"directory"` + +*** + +### draftId + +> **draftId**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:268](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L268) + +*** + +### expand? + +> `optional` **expand?**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:278](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L278) + +*** + +### forcedTools? + +> `optional` **forcedTools?**: `string`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:276](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L276) + +*** + +### images? + +> `optional` **images?**: `object`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:274](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L274) + +#### data + +> **data**: `string` + +#### media\_type + +> **media\_type**: `string` + +*** + +### mode + +> **mode**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:271](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L271) + +*** + +### model + +> **model**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:272](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L272) + +*** + +### prompt + +> **prompt**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:270](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L270) + +*** + +### provider? + +> `optional` **provider?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:273](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L273) + +*** + +### selectedAppIds? + +> `optional` **selectedAppIds?**: `string`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:280](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L280) + +*** + +### selectedBrowserIds? + +> `optional` **selectedBrowserIds?**: `string`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:279](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L279) diff --git a/frontend/.typedoc/shared/state/agentsSlice/interfaces/MessageBranch.md b/frontend/.typedoc/shared/state/agentsSlice/interfaces/MessageBranch.md new file mode 100644 index 00000000..801640e9 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/interfaces/MessageBranch.md @@ -0,0 +1,41 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / MessageBranch + +# Interface: MessageBranch + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:41](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L41) + +## Properties + +### created\_at + +> **created\_at**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:45](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L45) + +*** + +### fork\_point\_message\_id + +> **fork\_point\_message\_id**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:44](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L44) + +*** + +### id + +> **id**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:42](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L42) + +*** + +### parent\_branch\_id + +> **parent\_branch\_id**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:43](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L43) diff --git a/frontend/.typedoc/shared/state/agentsSlice/interfaces/SearchHistoryParams.md b/frontend/.typedoc/shared/state/agentsSlice/interfaces/SearchHistoryParams.md new file mode 100644 index 00000000..70d96866 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/interfaces/SearchHistoryParams.md @@ -0,0 +1,41 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / SearchHistoryParams + +# Interface: SearchHistoryParams + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:457](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L457) + +## Properties + +### dashboardId? + +> `optional` **dashboardId?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:461](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L461) + +*** + +### limit? + +> `optional` **limit?**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:459](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L459) + +*** + +### offset? + +> `optional` **offset?**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:460](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L460) + +*** + +### q? + +> `optional` **q?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:458](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L458) diff --git a/frontend/.typedoc/shared/state/agentsSlice/interfaces/SendMessagePayload.md b/frontend/.typedoc/shared/state/agentsSlice/interfaces/SendMessagePayload.md new file mode 100644 index 00000000..a9075295 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/interfaces/SendMessagePayload.md @@ -0,0 +1,133 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / SendMessagePayload + +# Interface: SendMessagePayload + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:182](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L182) + +## Properties + +### attachedSkills? + +> `optional` **attachedSkills?**: `object`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:191](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L191) + +#### content + +> **content**: `string` + +#### id + +> **id**: `string` + +#### name + +> **name**: `string` + +*** + +### contextPaths? + +> `optional` **contextPaths?**: `object`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:189](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L189) + +#### path + +> **path**: `string` + +#### type + +> **type**: `"file"` \| `"directory"` + +*** + +### forcedTools? + +> `optional` **forcedTools?**: `string`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:190](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L190) + +*** + +### hidden? + +> `optional` **hidden?**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:192](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L192) + +*** + +### images? + +> `optional` **images?**: `object`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:188](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L188) + +#### data + +> **data**: `string` + +#### media\_type + +> **media\_type**: `string` + +*** + +### mode? + +> `optional` **mode?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:185](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L185) + +*** + +### model? + +> `optional` **model?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:186](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L186) + +*** + +### prompt + +> **prompt**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:184](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L184) + +*** + +### provider? + +> `optional` **provider?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:187](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L187) + +*** + +### selectedAppIds? + +> `optional` **selectedAppIds?**: `string`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:194](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L194) + +*** + +### selectedBrowserIds? + +> `optional` **selectedBrowserIds?**: `string`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:193](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L193) + +*** + +### sessionId + +> **sessionId**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:183](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L183) diff --git a/frontend/.typedoc/shared/state/agentsSlice/interfaces/ToolGroupMeta.md b/frontend/.typedoc/shared/state/agentsSlice/interfaces/ToolGroupMeta.md new file mode 100644 index 00000000..7e590156 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/interfaces/ToolGroupMeta.md @@ -0,0 +1,41 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / ToolGroupMeta + +# Interface: ToolGroupMeta + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:51](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L51) + +## Properties + +### id + +> **id**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:52](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L52) + +*** + +### is\_refined + +> **is\_refined**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:55](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L55) + +*** + +### name + +> **name**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:53](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L53) + +*** + +### svg + +> **svg**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:54](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L54) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/addApprovalRequest.md b/frontend/.typedoc/shared/state/agentsSlice/variables/addApprovalRequest.md new file mode 100644 index 00000000..a073534f --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/addApprovalRequest.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / addApprovalRequest + +# Variable: addApprovalRequest + +> **addApprovalRequest**: `ActionCreatorWithPayload`\<\{ `request`: [`ApprovalRequest`](../interfaces/ApprovalRequest.md); `sessionId`: `string`; \}, `"agents/addApprovalRequest"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1378](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1378) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/addBranch.md b/frontend/.typedoc/shared/state/agentsSlice/variables/addBranch.md new file mode 100644 index 00000000..b848de3b --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/addBranch.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / addBranch + +# Variable: addBranch + +> **addBranch**: `ActionCreatorWithPayload`\<\{ `branch`: [`MessageBranch`](../interfaces/MessageBranch.md); `sessionId`: `string`; \}, `"agents/addBranch"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1386](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1386) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/addMessage.md b/frontend/.typedoc/shared/state/agentsSlice/variables/addMessage.md new file mode 100644 index 00000000..1059d92a --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/addMessage.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / addMessage + +# Variable: addMessage + +> **addMessage**: `ActionCreatorWithPayload`\<\{ `message`: [`AgentMessage`](../interfaces/AgentMessage.md); `sessionId`: `string`; \}, `"agents/addMessage"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1372](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1372) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/addOptimisticMessage.md b/frontend/.typedoc/shared/state/agentsSlice/variables/addOptimisticMessage.md new file mode 100644 index 00000000..7f226468 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/addOptimisticMessage.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / addOptimisticMessage + +# Variable: addOptimisticMessage + +> **addOptimisticMessage**: `ActionCreatorWithPayload`\<\{ `attachedSkills?`: `object`[]; `clientMessageId`: `string`; `contextPaths?`: `object`[]; `forcedTools?`: `string`[]; `hidden?`: `boolean`; `images?`: `object`[]; `prompt`: `string`; `sessionId`: `string`; \}, `"agents/addOptimisticMessage"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1373](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1373) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/clearContextOverflow.md b/frontend/.typedoc/shared/state/agentsSlice/variables/clearContextOverflow.md new file mode 100644 index 00000000..168727cc --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/clearContextOverflow.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / clearContextOverflow + +# Variable: clearContextOverflow + +> **clearContextOverflow**: `ActionCreatorWithPayload`\<\{ `sessionId`: `string`; \}, `"agents/clearContextOverflow"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1383](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1383) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/clearHistorySearch.md b/frontend/.typedoc/shared/state/agentsSlice/variables/clearHistorySearch.md new file mode 100644 index 00000000..3a295fa6 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/clearHistorySearch.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / clearHistorySearch + +# Variable: clearHistorySearch + +> **clearHistorySearch**: `ActionCreatorWithoutPayload`\<`"agents/clearHistorySearch"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1394](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1394) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/clearMcpSuggestions.md b/frontend/.typedoc/shared/state/agentsSlice/variables/clearMcpSuggestions.md new file mode 100644 index 00000000..9d25871c --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/clearMcpSuggestions.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / clearMcpSuggestions + +# Variable: clearMcpSuggestions + +> **clearMcpSuggestions**: `ActionCreatorWithPayload`\<\{ `sessionId`: `string`; \}, `"agents/clearMcpSuggestions"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1385](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1385) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/clearSessionMessages.md b/frontend/.typedoc/shared/state/agentsSlice/variables/clearSessionMessages.md new file mode 100644 index 00000000..9a3809a3 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/clearSessionMessages.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / clearSessionMessages + +# Variable: clearSessionMessages + +> **clearSessionMessages**: `ActionCreatorWithPayload`\<`string`, `"agents/clearSessionMessages"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1360](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1360) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/clearTurnLabel.md b/frontend/.typedoc/shared/state/agentsSlice/variables/clearTurnLabel.md new file mode 100644 index 00000000..03d7dc07 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/clearTurnLabel.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / clearTurnLabel + +# Variable: clearTurnLabel + +> **clearTurnLabel**: `ActionCreatorWithPayload`\<`string`, `"agents/clearTurnLabel"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1377](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1377) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/closeSession.md b/frontend/.typedoc/shared/state/agentsSlice/variables/closeSession.md new file mode 100644 index 00000000..1859292d --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/closeSession.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / closeSession + +# Variable: closeSession + +> `const` **closeSession**: `AsyncThunk`\<`string`, \{ `sessionId`: `string`; \}, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:416](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L416) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/closeSessionFromWs.md b/frontend/.typedoc/shared/state/agentsSlice/variables/closeSessionFromWs.md new file mode 100644 index 00000000..190a217d --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/closeSessionFromWs.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / closeSessionFromWs + +# Variable: closeSessionFromWs + +> **closeSessionFromWs**: `ActionCreatorWithPayload`\<[`HistorySession`](../interfaces/HistorySession.md), `"agents/closeSessionFromWs"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1392](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1392) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/collapseAllSessions.md b/frontend/.typedoc/shared/state/agentsSlice/variables/collapseAllSessions.md new file mode 100644 index 00000000..5a72628c --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/collapseAllSessions.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / collapseAllSessions + +# Variable: collapseAllSessions + +> **collapseAllSessions**: `ActionCreatorWithoutPayload`\<`"agents/collapseAllSessions"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1364](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1364) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/collapseSession.md b/frontend/.typedoc/shared/state/agentsSlice/variables/collapseSession.md new file mode 100644 index 00000000..ba349e4b --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/collapseSession.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / collapseSession + +# Variable: collapseSession + +> **collapseSession**: `ActionCreatorWithPayload`\<`string`, `"agents/collapseSession"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1363](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1363) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/createDraftSession.md b/frontend/.typedoc/shared/state/agentsSlice/variables/createDraftSession.md new file mode 100644 index 00000000..bfb1a883 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/createDraftSession.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / createDraftSession + +# Variable: createDraftSession + +> **createDraftSession**: `ActionCreatorWithPreparedPayload`\<\[`object`\], \{ `draftId`: `string`; `mode`: `string`; `model`: `string` \| `undefined`; `provider`: `string` \| `undefined`; `setActive`: `boolean`; `targetDirectory`: `string` \| `undefined`; `thinkingLevel`: `"off"` \| `"low"` \| `"medium"` \| `"high"` \| `"auto"` \| `undefined`; \}, `"agents/createDraftSession"`, `never`, `never`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1358](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1358) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/default.md b/frontend/.typedoc/shared/state/agentsSlice/variables/default.md new file mode 100644 index 00000000..4ada6945 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/default.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / default + +# Variable: default + +> **default**: `Reducer`\<`AgentsState`\> + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@reduxjs/toolkit/dist/index.d.mts:1546 + +The slice's reducer. diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/deleteSession.md b/frontend/.typedoc/shared/state/agentsSlice/variables/deleteSession.md new file mode 100644 index 00000000..fbc559ff --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/deleteSession.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / deleteSession + +# Variable: deleteSession + +> `const` **deleteSession**: `AsyncThunk`\<`string`, \{ `sessionId`: `string`; \}, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:438](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L438) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/dismissAgentNotification.md b/frontend/.typedoc/shared/state/agentsSlice/variables/dismissAgentNotification.md new file mode 100644 index 00000000..f3ff4930 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/dismissAgentNotification.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / dismissAgentNotification + +# Variable: dismissAgentNotification + +> **dismissAgentNotification**: `ActionCreatorWithPayload`\<`string`, `"agents/dismissAgentNotification"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1396](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1396) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/dismissAllFinishedNotifications.md b/frontend/.typedoc/shared/state/agentsSlice/variables/dismissAllFinishedNotifications.md new file mode 100644 index 00000000..6d4b9d3a --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/dismissAllFinishedNotifications.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / dismissAllFinishedNotifications + +# Variable: dismissAllFinishedNotifications + +> **dismissAllFinishedNotifications**: `ActionCreatorWithoutPayload`\<`"agents/dismissAllFinishedNotifications"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1397](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1397) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/duplicateSession.md b/frontend/.typedoc/shared/state/agentsSlice/variables/duplicateSession.md new file mode 100644 index 00000000..908fd569 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/duplicateSession.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / duplicateSession + +# Variable: duplicateSession + +> `const` **duplicateSession**: `AsyncThunk`\<[`AgentSession`](../interfaces/AgentSession.md), \{ `dashboardId?`: `string`; `sessionId`: `string`; `upToMessageId?`: `string`; \}, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:424](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L424) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/editMessage.md b/frontend/.typedoc/shared/state/agentsSlice/variables/editMessage.md new file mode 100644 index 00000000..f140c021 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/editMessage.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / editMessage + +# Variable: editMessage + +> `const` **editMessage**: `AsyncThunk`\<\{ `content`: `string`; `messageId`: `string`; `sessionId`: `string`; \}, \{ `content`: `string`; `messageId`: `string`; `sessionId`: `string`; \}, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:243](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L243) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/expandSession.md b/frontend/.typedoc/shared/state/agentsSlice/variables/expandSession.md new file mode 100644 index 00000000..3eb90e7a --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/expandSession.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / expandSession + +# Variable: expandSession + +> **expandSession**: `ActionCreatorWithPayload`\<`string`, `"agents/expandSession"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1362](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1362) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/fetchBrowserAgentChildren.md b/frontend/.typedoc/shared/state/agentsSlice/variables/fetchBrowserAgentChildren.md new file mode 100644 index 00000000..74163832 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/fetchBrowserAgentChildren.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / fetchBrowserAgentChildren + +# Variable: fetchBrowserAgentChildren + +> `const` **fetchBrowserAgentChildren**: `AsyncThunk`\<[`AgentSession`](../interfaces/AgentSession.md)[], `string`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:496](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L496) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/fetchHistory.md b/frontend/.typedoc/shared/state/agentsSlice/variables/fetchHistory.md new file mode 100644 index 00000000..e13605f4 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/fetchHistory.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / fetchHistory + +# Variable: fetchHistory + +> `const` **fetchHistory**: `AsyncThunk`\<[`HistorySession`](../interfaces/HistorySession.md)[], \{ `dashboardId?`: `string`; \}, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:446](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L446) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/fetchSession.md b/frontend/.typedoc/shared/state/agentsSlice/variables/fetchSession.md new file mode 100644 index 00000000..54dacece --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/fetchSession.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / fetchSession + +# Variable: fetchSession + +> `const` **fetchSession**: `AsyncThunk`\<[`AgentSession`](../interfaces/AgentSession.md), `string`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:283](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L283) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/fetchSessions.md b/frontend/.typedoc/shared/state/agentsSlice/variables/fetchSessions.md new file mode 100644 index 00000000..cfe7f00b --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/fetchSessions.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / fetchSessions + +# Variable: fetchSessions + +> `const` **fetchSessions**: `AsyncThunk`\<[`AgentSession`](../interfaces/AgentSession.md)[], \{ `dashboardId?`: `string`; \}, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:160](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L160) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/generateGroupMeta.md b/frontend/.typedoc/shared/state/agentsSlice/variables/generateGroupMeta.md new file mode 100644 index 00000000..ef9330ea --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/generateGroupMeta.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / generateGroupMeta + +# Variable: generateGroupMeta + +> `const` **generateGroupMeta**: `AsyncThunk`\<\{ `groupId`: `string`; `isRefined`: `boolean`; `name`: `string`; `sessionId`: `string`; `svg`: `string`; \}, [`GenerateGroupMetaPayload`](../interfaces/GenerateGroupMetaPayload.md), `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:347](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L347) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/generateTitle.md b/frontend/.typedoc/shared/state/agentsSlice/variables/generateTitle.md new file mode 100644 index 00000000..239f7041 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/generateTitle.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / generateTitle + +# Variable: generateTitle + +> `const` **generateTitle**: `AsyncThunk`\<\{ `sessionId`: `string`; `title`: `string`; \}, \{ `prompt`: `string`; `sessionId`: `string`; \}, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:326](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L326) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/handleApproval.md b/frontend/.typedoc/shared/state/agentsSlice/variables/handleApproval.md new file mode 100644 index 00000000..65a0e03d --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/handleApproval.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / handleApproval + +# Variable: handleApproval + +> `const` **handleApproval**: `AsyncThunk`\<\{ `behavior`: `"deny"` \| `"allow"`; `requestId`: `string`; \}, \{ `behavior`: `"deny"` \| `"allow"`; `message?`: `string`; `requestId`: `string`; `trustPattern?`: `boolean`; `updatedInput?`: `Record`\<`string`, `any`\>; \}, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:389](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L389) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/launchAgent.md b/frontend/.typedoc/shared/state/agentsSlice/variables/launchAgent.md new file mode 100644 index 00000000..62084add --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/launchAgent.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / launchAgent + +# Variable: launchAgent + +> `const` **launchAgent**: `AsyncThunk`\<[`AgentSession`](../interfaces/AgentSession.md), [`AgentConfig`](../interfaces/AgentConfig.md), `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:172](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L172) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/launchAndSendFirstMessage.md b/frontend/.typedoc/shared/state/agentsSlice/variables/launchAndSendFirstMessage.md new file mode 100644 index 00000000..5897bfb3 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/launchAndSendFirstMessage.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / launchAndSendFirstMessage + +# Variable: launchAndSendFirstMessage + +> `const` **launchAndSendFirstMessage**: `AsyncThunk`\<\{ `draftId`: `string`; `session`: [`AgentSession`](../interfaces/AgentSession.md); \}, [`LaunchAndSendPayload`](../interfaces/LaunchAndSendPayload.md), `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:302](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L302) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/markOptimisticFailed.md b/frontend/.typedoc/shared/state/agentsSlice/variables/markOptimisticFailed.md new file mode 100644 index 00000000..ec1a8dd3 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/markOptimisticFailed.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / markOptimisticFailed + +# Variable: markOptimisticFailed + +> **markOptimisticFailed**: `ActionCreatorWithPayload`\<\{ `clientMessageId`: `string`; `sessionId`: `string`; \}, `"agents/markOptimisticFailed"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1374](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1374) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/recordCompaction.md b/frontend/.typedoc/shared/state/agentsSlice/variables/recordCompaction.md new file mode 100644 index 00000000..c5508e95 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/recordCompaction.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / recordCompaction + +# Variable: recordCompaction + +> **recordCompaction**: `ActionCreatorWithPayload`\<\{ `sessionId`: `string`; `throughMsgId`: `string` \| `null`; \}, `"agents/recordCompaction"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1375](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1375) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/removeApprovalRequest.md b/frontend/.typedoc/shared/state/agentsSlice/variables/removeApprovalRequest.md new file mode 100644 index 00000000..10e133d9 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/removeApprovalRequest.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / removeApprovalRequest + +# Variable: removeApprovalRequest + +> **removeApprovalRequest**: `ActionCreatorWithPayload`\<\{ `requestId`: `string`; `sessionId`: `string`; \}, `"agents/removeApprovalRequest"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1379](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1379) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/removeDraftSession.md b/frontend/.typedoc/shared/state/agentsSlice/variables/removeDraftSession.md new file mode 100644 index 00000000..d4ee9cb4 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/removeDraftSession.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / removeDraftSession + +# Variable: removeDraftSession + +> **removeDraftSession**: `ActionCreatorWithPayload`\<`string`, `"agents/removeDraftSession"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1393](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1393) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/resumeSession.md b/frontend/.typedoc/shared/state/agentsSlice/variables/resumeSession.md new file mode 100644 index 00000000..008ff678 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/resumeSession.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / resumeSession + +# Variable: resumeSession + +> `const` **resumeSession**: `AsyncThunk`\<[`AgentSession`](../interfaces/AgentSession.md), \{ `sessionId`: `string`; \}, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:481](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L481) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/searchHistory.md b/frontend/.typedoc/shared/state/agentsSlice/variables/searchHistory.md new file mode 100644 index 00000000..895bcd18 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/searchHistory.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / searchHistory + +# Variable: searchHistory + +> `const` **searchHistory**: `AsyncThunk`\<\{ `hasMore`: `boolean`; `offset`: `number`; `query`: `string`; `sessions`: [`HistorySession`](../interfaces/HistorySession.md)[]; `total`: `number`; \}, [`SearchHistoryParams`](../interfaces/SearchHistoryParams.md), `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:464](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L464) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/sendMessage.md b/frontend/.typedoc/shared/state/agentsSlice/variables/sendMessage.md new file mode 100644 index 00000000..a2361aaf --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/sendMessage.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / sendMessage + +# Variable: sendMessage + +> `const` **sendMessage**: `AsyncThunk`\<\{ `clientMessageId`: `string`; `prompt`: `string`; `sessionId`: `string`; \}, [`SendMessagePayload`](../interfaces/SendMessagePayload.md), `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:201](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L201) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/setActiveBranch.md b/frontend/.typedoc/shared/state/agentsSlice/variables/setActiveBranch.md new file mode 100644 index 00000000..4339ac6c --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/setActiveBranch.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / setActiveBranch + +# Variable: setActiveBranch + +> **setActiveBranch**: `ActionCreatorWithPayload`\<\{ `branchId`: `string`; `sessionId`: `string`; \}, `"agents/setActiveBranch"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1387](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1387) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/setActiveSession.md b/frontend/.typedoc/shared/state/agentsSlice/variables/setActiveSession.md new file mode 100644 index 00000000..a35b4f9b --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/setActiveSession.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / setActiveSession + +# Variable: setActiveSession + +> **setActiveSession**: `ActionCreatorWithPayload`\<`string` \| `null`, `"agents/setActiveSession"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1359](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1359) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/setContextOverflow.md b/frontend/.typedoc/shared/state/agentsSlice/variables/setContextOverflow.md new file mode 100644 index 00000000..c8292a59 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/setContextOverflow.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / setContextOverflow + +# Variable: setContextOverflow + +> **setContextOverflow**: `ActionCreatorWithPayload`\<\{ `message`: `string`; `reason`: `string`; `sessionId`: `string`; \}, `"agents/setContextOverflow"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1382](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1382) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/setDraftSystemPrompt.md b/frontend/.typedoc/shared/state/agentsSlice/variables/setDraftSystemPrompt.md new file mode 100644 index 00000000..d2e9a791 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/setDraftSystemPrompt.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / setDraftSystemPrompt + +# Variable: setDraftSystemPrompt + +> **setDraftSystemPrompt**: `ActionCreatorWithPayload`\<\{ `sessionId`: `string`; `systemPrompt`: `string`; \}, `"agents/setDraftSystemPrompt"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1368](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1368) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/setExpandedSessionIds.md b/frontend/.typedoc/shared/state/agentsSlice/variables/setExpandedSessionIds.md new file mode 100644 index 00000000..ba34dc3c --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/setExpandedSessionIds.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / setExpandedSessionIds + +# Variable: setExpandedSessionIds + +> **setExpandedSessionIds**: `ActionCreatorWithPayload`\<`string`[], `"agents/setExpandedSessionIds"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1365](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1365) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/setMcpSuggestions.md b/frontend/.typedoc/shared/state/agentsSlice/variables/setMcpSuggestions.md new file mode 100644 index 00000000..313ece14 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/setMcpSuggestions.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / setMcpSuggestions + +# Variable: setMcpSuggestions + +> **setMcpSuggestions**: `ActionCreatorWithPayload`\<\{ `isVague`: `boolean`; `sessionId`: `string`; `suggestions`: `object`[]; \}, `"agents/setMcpSuggestions"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1384](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1384) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/setSessionConnState.md b/frontend/.typedoc/shared/state/agentsSlice/variables/setSessionConnState.md new file mode 100644 index 00000000..4fffe7a9 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/setSessionConnState.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / setSessionConnState + +# Variable: setSessionConnState + +> **setSessionConnState**: `ActionCreatorWithPayload`\<\{ `sessionId`: `string`; `state`: `"live"` \| `"reconnecting"`; \}, `"agents/setSessionConnState"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1371](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1371) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/setTurnLabel.md b/frontend/.typedoc/shared/state/agentsSlice/variables/setTurnLabel.md new file mode 100644 index 00000000..f446f677 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/setTurnLabel.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / setTurnLabel + +# Variable: setTurnLabel + +> **setTurnLabel**: `ActionCreatorWithPayload`\<\{ `label`: `string`; `sessionId`: `string`; `turnId`: `string`; \}, `"agents/setTurnLabel"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1376](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1376) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/stopAgent.md b/frontend/.typedoc/shared/state/agentsSlice/variables/stopAgent.md new file mode 100644 index 00000000..c87dfdf0 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/stopAgent.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / stopAgent + +# Variable: stopAgent + +> `const` **stopAgent**: `AsyncThunk`\<`string`, \{ `removeWorktree?`: `boolean`; `sessionId`: `string`; \}, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:231](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L231) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/switchBranch.md b/frontend/.typedoc/shared/state/agentsSlice/variables/switchBranch.md new file mode 100644 index 00000000..d70a19fe --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/switchBranch.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / switchBranch + +# Variable: switchBranch + +> `const` **switchBranch**: `AsyncThunk`\<\{ `branchId`: `string`; `sessionId`: `string`; \}, \{ `branchId`: `string`; `sessionId`: `string`; \}, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:255](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L255) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/toggleExpandSession.md b/frontend/.typedoc/shared/state/agentsSlice/variables/toggleExpandSession.md new file mode 100644 index 00000000..077e2b5c --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/toggleExpandSession.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / toggleExpandSession + +# Variable: toggleExpandSession + +> **toggleExpandSession**: `ActionCreatorWithPayload`\<`string`, `"agents/toggleExpandSession"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1361](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1361) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/trackAgentNotification.md b/frontend/.typedoc/shared/state/agentsSlice/variables/trackAgentNotification.md new file mode 100644 index 00000000..e7b114b2 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/trackAgentNotification.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / trackAgentNotification + +# Variable: trackAgentNotification + +> **trackAgentNotification**: `ActionCreatorWithPayload`\<`string`, `"agents/trackAgentNotification"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1395](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1395) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/updateGroupMeta.md b/frontend/.typedoc/shared/state/agentsSlice/variables/updateGroupMeta.md new file mode 100644 index 00000000..3c2c14a7 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/updateGroupMeta.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / updateGroupMeta + +# Variable: updateGroupMeta + +> **updateGroupMeta**: `ActionCreatorWithPayload`\<\{ `groupId`: `string`; `isRefined`: `boolean`; `name`: `string`; `sessionId`: `string`; `svg`: `string`; \}, `"agents/updateGroupMeta"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1367](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1367) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/updateSession.md b/frontend/.typedoc/shared/state/agentsSlice/variables/updateSession.md new file mode 100644 index 00000000..0bb9612d --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/updateSession.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / updateSession + +# Variable: updateSession + +> **updateSession**: `ActionCreatorWithPayload`\<[`AgentSession`](../interfaces/AgentSession.md), `"agents/updateSession"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1369](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1369) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/updateSessionContext.md b/frontend/.typedoc/shared/state/agentsSlice/variables/updateSessionContext.md new file mode 100644 index 00000000..e9c88c63 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/updateSessionContext.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / updateSessionContext + +# Variable: updateSessionContext + +> **updateSessionContext**: `ActionCreatorWithPayload`\<\{ `activeMcps`: `string`[]; `cacheReadPct`: `number`; `cacheReadTokens`: `number`; `contextWindow?`: `number`; `ctxUsedPct`: `number`; `frameworkOverheadTokens?`: `number`; `inputTokens`: `number`; `outputTokens`: `number`; `sessionId`: `string`; \}, `"agents/updateSessionContext"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1381](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1381) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/updateSessionCost.md b/frontend/.typedoc/shared/state/agentsSlice/variables/updateSessionCost.md new file mode 100644 index 00000000..baed6720 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/updateSessionCost.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / updateSessionCost + +# Variable: updateSessionCost + +> **updateSessionCost**: `ActionCreatorWithPayload`\<\{ `costUsd`: `number`; `sessionId`: `string`; \}, `"agents/updateSessionCost"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1380](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1380) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/updateSessionMode.md b/frontend/.typedoc/shared/state/agentsSlice/variables/updateSessionMode.md new file mode 100644 index 00000000..b9ec4524 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/updateSessionMode.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / updateSessionMode + +# Variable: updateSessionMode + +> **updateSessionMode**: `ActionCreatorWithPayload`\<\{ `mode`: `string`; `sessionId`: `string`; \}, `"agents/updateSessionMode"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1390](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1390) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/updateSessionModel.md b/frontend/.typedoc/shared/state/agentsSlice/variables/updateSessionModel.md new file mode 100644 index 00000000..a3c57bd8 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/updateSessionModel.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / updateSessionModel + +# Variable: updateSessionModel + +> **updateSessionModel**: `ActionCreatorWithPayload`\<\{ `model`: `string`; `sessionId`: `string`; \}, `"agents/updateSessionModel"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1389](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1389) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/updateSessionName.md b/frontend/.typedoc/shared/state/agentsSlice/variables/updateSessionName.md new file mode 100644 index 00000000..33ca350f --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/updateSessionName.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / updateSessionName + +# Variable: updateSessionName + +> **updateSessionName**: `ActionCreatorWithPayload`\<\{ `name`: `string`; `sessionId`: `string`; \}, `"agents/updateSessionName"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1366](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1366) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/updateSessionProvider.md b/frontend/.typedoc/shared/state/agentsSlice/variables/updateSessionProvider.md new file mode 100644 index 00000000..af303096 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/updateSessionProvider.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / updateSessionProvider + +# Variable: updateSessionProvider + +> **updateSessionProvider**: `ActionCreatorWithPayload`\<\{ `provider`: `string`; `sessionId`: `string`; \}, `"agents/updateSessionProvider"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1388](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1388) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/updateSessionStatus.md b/frontend/.typedoc/shared/state/agentsSlice/variables/updateSessionStatus.md new file mode 100644 index 00000000..95fc769c --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/updateSessionStatus.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / updateSessionStatus + +# Variable: updateSessionStatus + +> **updateSessionStatus**: `ActionCreatorWithPayload`\<\{ `sessionId`: `string`; `status`: `"draft"` \| `"running"` \| `"waiting_approval"` \| `"completed"` \| `"error"` \| `"stopped"`; \}, `"agents/updateSessionStatus"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1370](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1370) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/updateSessionThinkingLevel.md b/frontend/.typedoc/shared/state/agentsSlice/variables/updateSessionThinkingLevel.md new file mode 100644 index 00000000..22903b48 --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/updateSessionThinkingLevel.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / updateSessionThinkingLevel + +# Variable: updateSessionThinkingLevel + +> **updateSessionThinkingLevel**: `ActionCreatorWithPayload`\<\{ `level`: `"off"` \| `"low"` \| `"medium"` \| `"high"` \| `"auto"`; `sessionId`: `string`; \}, `"agents/updateSessionThinkingLevel"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:1391](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L1391) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/updateSystemPrompt.md b/frontend/.typedoc/shared/state/agentsSlice/variables/updateSystemPrompt.md new file mode 100644 index 00000000..68d5fb6d --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/updateSystemPrompt.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / updateSystemPrompt + +# Variable: updateSystemPrompt + +> `const` **updateSystemPrompt**: `AsyncThunk`\<\{ `sessionId`: `string`; `systemPrompt`: `string`; \}, \{ `sessionId`: `string`; `systemPrompt`: `string`; \}, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:365](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L365) diff --git a/frontend/.typedoc/shared/state/agentsSlice/variables/updateThinkingLevel.md b/frontend/.typedoc/shared/state/agentsSlice/variables/updateThinkingLevel.md new file mode 100644 index 00000000..58e4878e --- /dev/null +++ b/frontend/.typedoc/shared/state/agentsSlice/variables/updateThinkingLevel.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/agentsSlice](../README.md) / updateThinkingLevel + +# Variable: updateThinkingLevel + +> `const` **updateThinkingLevel**: `AsyncThunk`\<\{ `level`: `"off"` \| `"low"` \| `"medium"` \| `"high"` \| `"auto"`; `sessionId`: `string`; \}, \{ `level`: `"off"` \| `"low"` \| `"medium"` \| `"high"` \| `"auto"`; `sessionId`: `string`; \}, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/agentsSlice.ts:377](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/agentsSlice.ts#L377) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/README.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/README.md new file mode 100644 index 00000000..ee5bfcac --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/README.md @@ -0,0 +1,87 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / shared/state/dashboardLayoutSlice + +# shared/state/dashboardLayoutSlice + +## Interfaces + +- [BrowserCardPosition](interfaces/BrowserCardPosition.md) +- [BrowserTab](interfaces/BrowserTab.md) +- [CardPosition](interfaces/CardPosition.md) +- [DashboardLayoutState](interfaces/DashboardLayoutState.md) +- [NotePosition](interfaces/NotePosition.md) +- [ViewCardPosition](interfaces/ViewCardPosition.md) + +## Type Aliases + +- [CardType](type-aliases/CardType.md) +- [NoteColor](type-aliases/NoteColor.md) + +## Variables + +- [addBrowserCard](variables/addBrowserCard.md) +- [addBrowserCardFromBackend](variables/addBrowserCardFromBackend.md) +- [addBrowserTab](variables/addBrowserTab.md) +- [addNote](variables/addNote.md) +- [addViewCard](variables/addViewCard.md) +- [bringToFront](variables/bringToFront.md) +- [clearAllGlowingBrowserCards](variables/clearAllGlowingBrowserCards.md) +- [clearGlowingAgentCard](variables/clearGlowingAgentCard.md) +- [clearGlowingBrowserCards](variables/clearGlowingBrowserCards.md) +- [clearPendingFocusBrowserId](variables/clearPendingFocusBrowserId.md) +- [clearPendingFocusNoteId](variables/clearPendingFocusNoteId.md) +- [default](variables/default.md) +- [DEFAULT\_BROWSER\_CARD\_H](variables/DEFAULT_BROWSER_CARD_H.md) +- [DEFAULT\_BROWSER\_CARD\_W](variables/DEFAULT_BROWSER_CARD_W.md) +- [DEFAULT\_CARD\_H](variables/DEFAULT_CARD_H.md) +- [DEFAULT\_CARD\_W](variables/DEFAULT_CARD_W.md) +- [DEFAULT\_NOTE\_H](variables/DEFAULT_NOTE_H.md) +- [DEFAULT\_NOTE\_W](variables/DEFAULT_NOTE_W.md) +- [DEFAULT\_VIEW\_CARD\_H](variables/DEFAULT_VIEW_CARD_H.md) +- [DEFAULT\_VIEW\_CARD\_W](variables/DEFAULT_VIEW_CARD_W.md) +- [EXPANDED\_CARD\_MIN\_H](variables/EXPANDED_CARD_MIN_H.md) +- [fadeGlowingAgentCard](variables/fadeGlowingAgentCard.md) +- [fadeGlowingBrowserCards](variables/fadeGlowingBrowserCards.md) +- [fetchLayout](variables/fetchLayout.md) +- [GRID\_GAP](variables/GRID_GAP.md) +- [moveCards](variables/moveCards.md) +- [pasteBrowserCard](variables/pasteBrowserCard.md) +- [placeCard](variables/placeCard.md) +- [reconcileSessions](variables/reconcileSessions.md) +- [removeBrowserCard](variables/removeBrowserCard.md) +- [removeBrowserTab](variables/removeBrowserTab.md) +- [removeCard](variables/removeCard.md) +- [removeNote](variables/removeNote.md) +- [removeViewCard](variables/removeViewCard.md) +- [reorderBrowserTab](variables/reorderBrowserTab.md) +- [replaceDraftId](variables/replaceDraftId.md) +- [resetLayout](variables/resetLayout.md) +- [resumeBrowserCard](variables/resumeBrowserCard.md) +- [saveLayout](variables/saveLayout.md) +- [setActiveBrowserTab](variables/setActiveBrowserTab.md) +- [setBrowserCardPosition](variables/setBrowserCardPosition.md) +- [setBrowserCardSize](variables/setBrowserCardSize.md) +- [setCardPosition](variables/setCardPosition.md) +- [setCardSize](variables/setCardSize.md) +- [setGlowingAgentCard](variables/setGlowingAgentCard.md) +- [setGlowingBrowserCards](variables/setGlowingBrowserCards.md) +- [setNoteColor](variables/setNoteColor.md) +- [setNotePosition](variables/setNotePosition.md) +- [setNoteSize](variables/setNoteSize.md) +- [setViewCardPosition](variables/setViewCardPosition.md) +- [setViewCardSize](variables/setViewCardSize.md) +- [suspendBrowserCard](variables/suspendBrowserCard.md) +- [tidyLayout](variables/tidyLayout.md) +- [updateBrowserCardUrl](variables/updateBrowserCardUrl.md) +- [updateBrowserTabFavicon](variables/updateBrowserTabFavicon.md) +- [updateBrowserTabTitle](variables/updateBrowserTabTitle.md) +- [updateBrowserTabUrl](variables/updateBrowserTabUrl.md) +- [updateNoteContent](variables/updateNoteContent.md) + +## Functions + +- [findOpenGridCell](functions/findOpenGridCell.md) +- [findOpenSpotNear](functions/findOpenSpotNear.md) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/functions/findOpenGridCell.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/functions/findOpenGridCell.md new file mode 100644 index 00000000..4fbadcba --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/functions/findOpenGridCell.md @@ -0,0 +1,37 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / findOpenGridCell + +# Function: findOpenGridCell() + +> **findOpenGridCell**(`occupiedRects`, `newW`, `newH`): `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:221](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L221) + +## Parameters + +### occupiedRects + +`Rect`[] + +### newW + +`number` + +### newH + +`number` + +## Returns + +`object` + +### x + +> **x**: `number` + +### y + +> **y**: `number` diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/functions/findOpenSpotNear.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/functions/findOpenSpotNear.md new file mode 100644 index 00000000..5a590b3d --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/functions/findOpenSpotNear.md @@ -0,0 +1,45 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / findOpenSpotNear + +# Function: findOpenSpotNear() + +> **findOpenSpotNear**(`anchorX`, `anchorY`, `occupiedRects`, `newW`, `newH`): `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:257](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L257) + +## Parameters + +### anchorX + +`number` + +### anchorY + +`number` + +### occupiedRects + +`Rect`[] + +### newW + +`number` + +### newH + +`number` + +## Returns + +`object` + +### x + +> **x**: `number` + +### y + +> **y**: `number` diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/interfaces/BrowserCardPosition.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/interfaces/BrowserCardPosition.md new file mode 100644 index 00000000..5903aa54 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/interfaces/BrowserCardPosition.md @@ -0,0 +1,101 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / BrowserCardPosition + +# Interface: BrowserCardPosition + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:50](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L50) + +## Properties + +### activeTabId + +> **activeTabId**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:54](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L54) + +*** + +### browser\_id + +> **browser\_id**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:51](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L51) + +*** + +### dashboard\_id? + +> `optional` **dashboard\_id?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:63](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L63) + +Dashboard this card belongs to; cards render and persist only on their owning dashboard. + +*** + +### height + +> **height**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:58](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L58) + +*** + +### spawned\_by? + +> `optional` **spawned\_by?**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:61](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L61) + +Agent session that spawned this browser; auto-removed when its owner reaches terminal state. + +*** + +### tabs + +> **tabs**: [`BrowserTab`](BrowserTab.md)[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:53](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L53) + +*** + +### url + +> **url**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:52](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L52) + +*** + +### width + +> **width**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:57](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L57) + +*** + +### x + +> **x**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:55](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L55) + +*** + +### y + +> **y**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:56](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L56) + +*** + +### zOrder + +> **zOrder**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:59](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L59) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/interfaces/BrowserTab.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/interfaces/BrowserTab.md new file mode 100644 index 00000000..9832d103 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/interfaces/BrowserTab.md @@ -0,0 +1,41 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / BrowserTab + +# Interface: BrowserTab + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:43](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L43) + +## Properties + +### favicon? + +> `optional` **favicon?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:47](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L47) + +*** + +### id + +> **id**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:44](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L44) + +*** + +### title + +> **title**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:46](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L46) + +*** + +### url + +> **url**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:45](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L45) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/interfaces/CardPosition.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/interfaces/CardPosition.md new file mode 100644 index 00000000..3af93cd8 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/interfaces/CardPosition.md @@ -0,0 +1,57 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / CardPosition + +# Interface: CardPosition + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:25](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L25) + +## Properties + +### height + +> **height**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:30](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L30) + +*** + +### session\_id + +> **session\_id**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:26](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L26) + +*** + +### width + +> **width**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:29](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L29) + +*** + +### x + +> **x**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:27](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L27) + +*** + +### y + +> **y**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:28](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L28) + +*** + +### zOrder + +> **zOrder**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:31](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L31) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/interfaces/DashboardLayoutState.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/interfaces/DashboardLayoutState.md new file mode 100644 index 00000000..8b88b38f --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/interfaces/DashboardLayoutState.md @@ -0,0 +1,125 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / DashboardLayoutState + +# Interface: DashboardLayoutState + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:82](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L82) + +## Properties + +### browserCards + +> **browserCards**: `Record`\<`string`, [`BrowserCardPosition`](BrowserCardPosition.md)\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:85](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L85) + +*** + +### cards + +> **cards**: `Record`\<`string`, [`CardPosition`](CardPosition.md)\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:83](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L83) + +*** + +### closedCardPositions + +> **closedCardPositions**: `Record`\<`string`, [`CardPosition`](CardPosition.md)\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:87](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L87) + +*** + +### glowingAgentCards + +> **glowingAgentCards**: `Record`\<`string`, \{ `fading`: `boolean`; `label?`: `string`; `sourceId`: `string`; `sourceYRatio?`: `number`; \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:89](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L89) + +*** + +### glowingBrowserCards + +> **glowingBrowserCards**: `Record`\<`string`, \{ `fading`: `boolean`; `label?`: `string`; `sourceId`: `string`; \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:88](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L88) + +*** + +### initialized + +> **initialized**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:93](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L93) + +*** + +### loading + +> **loading**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:92](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L92) + +*** + +### nextZOrder + +> **nextZOrder**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:91](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L91) + +*** + +### notes + +> **notes**: `Record`\<`string`, [`NotePosition`](NotePosition.md)\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:86](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L86) + +*** + +### pendingFocusBrowserId + +> **pendingFocusBrowserId**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:95](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L95) + +Transient: new browser card id; Dashboard pans/zooms to it then clears via clearPendingFocusBrowserId. + +*** + +### pendingFocusNoteId + +> **pendingFocusNoteId**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:96](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L96) + +*** + +### persistedExpandedSessionIds + +> **persistedExpandedSessionIds**: `string`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:90](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L90) + +*** + +### suspendedBrowserCards + +> **suspendedBrowserCards**: `Record`\<`string`, \{ `capturedAt`: `number`; `dataUrl`: `string`; \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:98](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L98) + +Transient: snapshot stand-ins for off-screen webviews; never rides the layout PUT. + +*** + +### viewCards + +> **viewCards**: `Record`\<`string`, [`ViewCardPosition`](ViewCardPosition.md)\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:84](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L84) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/interfaces/NotePosition.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/interfaces/NotePosition.md new file mode 100644 index 00000000..5e59513f --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/interfaces/NotePosition.md @@ -0,0 +1,73 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / NotePosition + +# Interface: NotePosition + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:68](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L68) + +## Properties + +### color + +> **color**: [`NoteColor`](../type-aliases/NoteColor.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:75](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L75) + +*** + +### content + +> **content**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:74](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L74) + +*** + +### height + +> **height**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:73](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L73) + +*** + +### note\_id + +> **note\_id**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:69](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L69) + +*** + +### width + +> **width**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:72](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L72) + +*** + +### x + +> **x**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:70](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L70) + +*** + +### y + +> **y**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:71](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L71) + +*** + +### zOrder + +> **zOrder**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:76](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L76) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/interfaces/ViewCardPosition.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/interfaces/ViewCardPosition.md new file mode 100644 index 00000000..a2828dbf --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/interfaces/ViewCardPosition.md @@ -0,0 +1,57 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / ViewCardPosition + +# Interface: ViewCardPosition + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:34](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L34) + +## Properties + +### height + +> **height**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:39](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L39) + +*** + +### output\_id + +> **output\_id**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:35](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L35) + +*** + +### width + +> **width**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:38](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L38) + +*** + +### x + +> **x**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:36](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L36) + +*** + +### y + +> **y**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:37](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L37) + +*** + +### zOrder + +> **zOrder**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:40](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L40) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/type-aliases/CardType.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/type-aliases/CardType.md new file mode 100644 index 00000000..b7e13483 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/type-aliases/CardType.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / CardType + +# Type Alias: CardType + +> **CardType** = `"agent"` \| `"view"` \| `"browser"` \| `"note"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:23](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L23) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/type-aliases/NoteColor.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/type-aliases/NoteColor.md new file mode 100644 index 00000000..ff5e5011 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/type-aliases/NoteColor.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / NoteColor + +# Type Alias: NoteColor + +> **NoteColor** = `"yellow"` \| `"pink"` \| `"blue"` \| `"green"` \| `"purple"` \| `"gray"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:66](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L66) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/DEFAULT_BROWSER_CARD_H.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/DEFAULT_BROWSER_CARD_H.md new file mode 100644 index 00000000..c7877895 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/DEFAULT_BROWSER_CARD_H.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / DEFAULT\_BROWSER\_CARD\_H + +# Variable: DEFAULT\_BROWSER\_CARD\_H + +> `const` **DEFAULT\_BROWSER\_CARD\_H**: `800` = `800` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:17](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L17) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/DEFAULT_BROWSER_CARD_W.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/DEFAULT_BROWSER_CARD_W.md new file mode 100644 index 00000000..32958eb4 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/DEFAULT_BROWSER_CARD_W.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / DEFAULT\_BROWSER\_CARD\_W + +# Variable: DEFAULT\_BROWSER\_CARD\_W + +> `const` **DEFAULT\_BROWSER\_CARD\_W**: `1280` = `1280` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:16](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L16) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/DEFAULT_CARD_H.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/DEFAULT_CARD_H.md new file mode 100644 index 00000000..21eaac24 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/DEFAULT_CARD_H.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / DEFAULT\_CARD\_H + +# Variable: DEFAULT\_CARD\_H + +> `const` **DEFAULT\_CARD\_H**: `280` = `280` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:13](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L13) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/DEFAULT_CARD_W.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/DEFAULT_CARD_W.md new file mode 100644 index 00000000..634ff96b --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/DEFAULT_CARD_W.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / DEFAULT\_CARD\_W + +# Variable: DEFAULT\_CARD\_W + +> `const` **DEFAULT\_CARD\_W**: `480` = `480` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L12) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/DEFAULT_NOTE_H.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/DEFAULT_NOTE_H.md new file mode 100644 index 00000000..592ed23d --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/DEFAULT_NOTE_H.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / DEFAULT\_NOTE\_H + +# Variable: DEFAULT\_NOTE\_H + +> `const` **DEFAULT\_NOTE\_H**: `200` = `200` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:80](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L80) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/DEFAULT_NOTE_W.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/DEFAULT_NOTE_W.md new file mode 100644 index 00000000..7b2d0ce6 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/DEFAULT_NOTE_W.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / DEFAULT\_NOTE\_W + +# Variable: DEFAULT\_NOTE\_W + +> `const` **DEFAULT\_NOTE\_W**: `240` = `240` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:79](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L79) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/DEFAULT_VIEW_CARD_H.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/DEFAULT_VIEW_CARD_H.md new file mode 100644 index 00000000..5017078a --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/DEFAULT_VIEW_CARD_H.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / DEFAULT\_VIEW\_CARD\_H + +# Variable: DEFAULT\_VIEW\_CARD\_H + +> `const` **DEFAULT\_VIEW\_CARD\_H**: `800` = `800` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:15](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L15) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/DEFAULT_VIEW_CARD_W.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/DEFAULT_VIEW_CARD_W.md new file mode 100644 index 00000000..b8790553 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/DEFAULT_VIEW_CARD_W.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / DEFAULT\_VIEW\_CARD\_W + +# Variable: DEFAULT\_VIEW\_CARD\_W + +> `const` **DEFAULT\_VIEW\_CARD\_W**: `1280` = `1280` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:14](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L14) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/EXPANDED_CARD_MIN_H.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/EXPANDED_CARD_MIN_H.md new file mode 100644 index 00000000..32b8afe0 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/EXPANDED_CARD_MIN_H.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / EXPANDED\_CARD\_MIN\_H + +# Variable: EXPANDED\_CARD\_MIN\_H + +> `const` **EXPANDED\_CARD\_MIN\_H**: `620` = `620` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:18](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L18) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/GRID_GAP.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/GRID_GAP.md new file mode 100644 index 00000000..52d7b23f --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/GRID_GAP.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / GRID\_GAP + +# Variable: GRID\_GAP + +> `const` **GRID\_GAP**: `24` = `24` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:19](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L19) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/addBrowserCard.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/addBrowserCard.md new file mode 100644 index 00000000..752f2f9f --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/addBrowserCard.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / addBrowserCard + +# Variable: addBrowserCard + +> **addBrowserCard**: `ActionCreatorWithPayload`\<\{ `expandedSessionIds?`: `string`[]; `url`: `string`; \}, `"dashboardLayout/addBrowserCard"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1064](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1064) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/addBrowserCardFromBackend.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/addBrowserCardFromBackend.md new file mode 100644 index 00000000..4fd29d79 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/addBrowserCardFromBackend.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / addBrowserCardFromBackend + +# Variable: addBrowserCardFromBackend + +> **addBrowserCardFromBackend**: `ActionCreatorWithPayload`\<[`BrowserCardPosition`](../interfaces/BrowserCardPosition.md), `"dashboardLayout/addBrowserCardFromBackend"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1065](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1065) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/addBrowserTab.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/addBrowserTab.md new file mode 100644 index 00000000..eca78c1c --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/addBrowserTab.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / addBrowserTab + +# Variable: addBrowserTab + +> **addBrowserTab**: `ActionCreatorWithPayload`\<\{ `browserId`: `string`; `makeActive?`: `boolean`; `url`: `string`; \}, `"dashboardLayout/addBrowserTab"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1073](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1073) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/addNote.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/addNote.md new file mode 100644 index 00000000..fa193548 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/addNote.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / addNote + +# Variable: addNote + +> **addNote**: `ActionCreatorWithPayload`\<\{ `color?`: [`NoteColor`](../type-aliases/NoteColor.md); `expandedSessionIds?`: `string`[]; `x?`: `number`; `y?`: `number`; \}, `"dashboardLayout/addNote"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1089](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1089) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/addViewCard.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/addViewCard.md new file mode 100644 index 00000000..85389f96 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/addViewCard.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / addViewCard + +# Variable: addViewCard + +> **addViewCard**: `ActionCreatorWithPayload`\<\{ `expandedSessionIds?`: `string`[]; `height?`: `number`; `outputId`: `string`; `width?`: `number`; `x?`: `number`; `y?`: `number`; \}, `"dashboardLayout/addViewCard"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1060](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1060) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/bringToFront.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/bringToFront.md new file mode 100644 index 00000000..a9f10a20 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/bringToFront.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / bringToFront + +# Variable: bringToFront + +> **bringToFront**: `ActionCreatorWithPayload`\<\{ `id`: `string`; `type`: `"view"` \| `"agent"` \| `"browser"` \| `"note"`; \}, `"dashboardLayout/bringToFront"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1056](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1056) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/clearAllGlowingBrowserCards.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/clearAllGlowingBrowserCards.md new file mode 100644 index 00000000..3fcc624f --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/clearAllGlowingBrowserCards.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / clearAllGlowingBrowserCards + +# Variable: clearAllGlowingBrowserCards + +> **clearAllGlowingBrowserCards**: `ActionCreatorWithoutPayload`\<`"dashboardLayout/clearAllGlowingBrowserCards"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1084](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1084) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/clearGlowingAgentCard.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/clearGlowingAgentCard.md new file mode 100644 index 00000000..cf3ec519 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/clearGlowingAgentCard.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / clearGlowingAgentCard + +# Variable: clearGlowingAgentCard + +> **clearGlowingAgentCard**: `ActionCreatorWithPayload`\<`string`, `"dashboardLayout/clearGlowingAgentCard"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1087](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1087) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/clearGlowingBrowserCards.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/clearGlowingBrowserCards.md new file mode 100644 index 00000000..0fd0f690 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/clearGlowingBrowserCards.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / clearGlowingBrowserCards + +# Variable: clearGlowingBrowserCards + +> **clearGlowingBrowserCards**: `ActionCreatorWithPayload`\<`string`, `"dashboardLayout/clearGlowingBrowserCards"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1083](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1083) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/clearPendingFocusBrowserId.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/clearPendingFocusBrowserId.md new file mode 100644 index 00000000..f397dc80 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/clearPendingFocusBrowserId.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / clearPendingFocusBrowserId + +# Variable: clearPendingFocusBrowserId + +> **clearPendingFocusBrowserId**: `ActionCreatorWithoutPayload`\<`"dashboardLayout/clearPendingFocusBrowserId"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1088](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1088) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/clearPendingFocusNoteId.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/clearPendingFocusNoteId.md new file mode 100644 index 00000000..bf54539a --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/clearPendingFocusNoteId.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / clearPendingFocusNoteId + +# Variable: clearPendingFocusNoteId + +> **clearPendingFocusNoteId**: `ActionCreatorWithoutPayload`\<`"dashboardLayout/clearPendingFocusNoteId"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1095](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1095) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/default.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/default.md new file mode 100644 index 00000000..ef8c0f17 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/default.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / default + +# Variable: default + +> **default**: `Reducer`\<[`DashboardLayoutState`](../interfaces/DashboardLayoutState.md)\> + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@reduxjs/toolkit/dist/index.d.mts:1546 + +The slice's reducer. diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/fadeGlowingAgentCard.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/fadeGlowingAgentCard.md new file mode 100644 index 00000000..83ed587c --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/fadeGlowingAgentCard.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / fadeGlowingAgentCard + +# Variable: fadeGlowingAgentCard + +> **fadeGlowingAgentCard**: `ActionCreatorWithPayload`\<`string`, `"dashboardLayout/fadeGlowingAgentCard"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1086](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1086) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/fadeGlowingBrowserCards.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/fadeGlowingBrowserCards.md new file mode 100644 index 00000000..6cfbd6a3 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/fadeGlowingBrowserCards.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / fadeGlowingBrowserCards + +# Variable: fadeGlowingBrowserCards + +> **fadeGlowingBrowserCards**: `ActionCreatorWithPayload`\<`string`, `"dashboardLayout/fadeGlowingBrowserCards"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1082](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1082) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/fetchLayout.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/fetchLayout.md new file mode 100644 index 00000000..6b0c33a8 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/fetchLayout.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / fetchLayout + +# Variable: fetchLayout + +> `const` **fetchLayout**: `AsyncThunk`\<\{ `browserCards`: `Record`\<`string`, [`BrowserCardPosition`](../interfaces/BrowserCardPosition.md)\>; `cards`: `Record`\<`string`, [`CardPosition`](../interfaces/CardPosition.md)\>; `expandedSessionIds`: `string`[]; `notes`: `Record`\<`string`, [`NotePosition`](../interfaces/NotePosition.md)\>; `viewCards`: `Record`\<`string`, [`ViewCardPosition`](../interfaces/ViewCardPosition.md)\>; \}, \{ `dashboardId`: `string`; `isReconnect?`: `boolean`; \}, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:130](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L130) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/moveCards.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/moveCards.md new file mode 100644 index 00000000..a3c6bb03 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/moveCards.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / moveCards + +# Variable: moveCards + +> **moveCards**: `ActionCreatorWithPayload`\<\{ `dx`: `number`; `dy`: `number`; `items`: `object`[]; \}, `"dashboardLayout/moveCards"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1080](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1080) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/pasteBrowserCard.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/pasteBrowserCard.md new file mode 100644 index 00000000..d05dbe3d --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/pasteBrowserCard.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / pasteBrowserCard + +# Variable: pasteBrowserCard + +> **pasteBrowserCard**: `ActionCreatorWithPayload`\<\{ `expandedSessionIds?`: `string`[]; `height?`: `number`; `id?`: `string`; `tabs`: [`BrowserTab`](../interfaces/BrowserTab.md)[]; `url`: `string`; `width?`: `number`; `x?`: `number`; `y?`: `number`; \}, `"dashboardLayout/pasteBrowserCard"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1071](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1071) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/placeCard.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/placeCard.md new file mode 100644 index 00000000..f0a96c5e --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/placeCard.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / placeCard + +# Variable: placeCard + +> **placeCard**: `ActionCreatorWithPayload`\<\{ `expandedSessionIds?`: `string`[]; `height`: `number`; `sessionId`: `string`; `width`: `number`; `x`: `number`; `y`: `number`; \}, `"dashboardLayout/placeCard"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1053](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1053) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/reconcileSessions.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/reconcileSessions.md new file mode 100644 index 00000000..5d6adbb9 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/reconcileSessions.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / reconcileSessions + +# Variable: reconcileSessions + +> **reconcileSessions**: `ActionCreatorWithPayload`\<\{ `expandedSessionIds`: `string`[]; `sessionIds`: `string`[]; \}, `"dashboardLayout/reconcileSessions"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1057](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1057) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/removeBrowserCard.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/removeBrowserCard.md new file mode 100644 index 00000000..4f8bcf1b --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/removeBrowserCard.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / removeBrowserCard + +# Variable: removeBrowserCard + +> **removeBrowserCard**: `ActionCreatorWithPayload`\<`string`, `"dashboardLayout/removeBrowserCard"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1068](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1068) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/removeBrowserTab.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/removeBrowserTab.md new file mode 100644 index 00000000..99ba98c9 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/removeBrowserTab.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / removeBrowserTab + +# Variable: removeBrowserTab + +> **removeBrowserTab**: `ActionCreatorWithPayload`\<\{ `browserId`: `string`; `tabId`: `string`; \}, `"dashboardLayout/removeBrowserTab"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1074](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1074) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/removeCard.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/removeCard.md new file mode 100644 index 00000000..18f2cd6f --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/removeCard.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / removeCard + +# Variable: removeCard + +> **removeCard**: `ActionCreatorWithPayload`\<`string`, `"dashboardLayout/removeCard"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1055](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1055) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/removeNote.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/removeNote.md new file mode 100644 index 00000000..8a70e2ae --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/removeNote.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / removeNote + +# Variable: removeNote + +> **removeNote**: `ActionCreatorWithPayload`\<`string`, `"dashboardLayout/removeNote"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1094](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1094) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/removeViewCard.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/removeViewCard.md new file mode 100644 index 00000000..d9ed2848 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/removeViewCard.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / removeViewCard + +# Variable: removeViewCard + +> **removeViewCard**: `ActionCreatorWithPayload`\<`string`, `"dashboardLayout/removeViewCard"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1063](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1063) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/reorderBrowserTab.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/reorderBrowserTab.md new file mode 100644 index 00000000..9c88eb29 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/reorderBrowserTab.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / reorderBrowserTab + +# Variable: reorderBrowserTab + +> **reorderBrowserTab**: `ActionCreatorWithPayload`\<\{ `browserId`: `string`; `tabId`: `string`; `toIndex`: `number`; \}, `"dashboardLayout/reorderBrowserTab"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1079](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1079) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/replaceDraftId.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/replaceDraftId.md new file mode 100644 index 00000000..f327eaaa --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/replaceDraftId.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / replaceDraftId + +# Variable: replaceDraftId + +> **replaceDraftId**: `ActionCreatorWithPayload`\<\{ `newId`: `string`; `oldId`: `string`; \}, `"dashboardLayout/replaceDraftId"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1058](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1058) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/resetLayout.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/resetLayout.md new file mode 100644 index 00000000..a3c36ffd --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/resetLayout.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / resetLayout + +# Variable: resetLayout + +> **resetLayout**: `ActionCreatorWithoutPayload`\<`"dashboardLayout/resetLayout"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1096](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1096) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/resumeBrowserCard.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/resumeBrowserCard.md new file mode 100644 index 00000000..f56a37d2 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/resumeBrowserCard.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / resumeBrowserCard + +# Variable: resumeBrowserCard + +> **resumeBrowserCard**: `ActionCreatorWithPayload`\<`string`, `"dashboardLayout/resumeBrowserCard"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1070](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1070) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/saveLayout.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/saveLayout.md new file mode 100644 index 00000000..38b73f41 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/saveLayout.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / saveLayout + +# Variable: saveLayout + +> `const` **saveLayout**: `AsyncThunk`\<`SaveLayoutPayload`, `SaveLayoutPayload`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:168](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L168) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setActiveBrowserTab.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setActiveBrowserTab.md new file mode 100644 index 00000000..7f049d07 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setActiveBrowserTab.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / setActiveBrowserTab + +# Variable: setActiveBrowserTab + +> **setActiveBrowserTab**: `ActionCreatorWithPayload`\<\{ `browserId`: `string`; `tabId`: `string`; \}, `"dashboardLayout/setActiveBrowserTab"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1075](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1075) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setBrowserCardPosition.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setBrowserCardPosition.md new file mode 100644 index 00000000..d0f03ce3 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setBrowserCardPosition.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / setBrowserCardPosition + +# Variable: setBrowserCardPosition + +> **setBrowserCardPosition**: `ActionCreatorWithPayload`\<\{ `browserId`: `string`; `x`: `number`; `y`: `number`; \}, `"dashboardLayout/setBrowserCardPosition"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1066](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1066) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setBrowserCardSize.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setBrowserCardSize.md new file mode 100644 index 00000000..586fa37c --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setBrowserCardSize.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / setBrowserCardSize + +# Variable: setBrowserCardSize + +> **setBrowserCardSize**: `ActionCreatorWithPayload`\<\{ `browserId`: `string`; `height`: `number`; `width`: `number`; \}, `"dashboardLayout/setBrowserCardSize"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1067](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1067) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setCardPosition.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setCardPosition.md new file mode 100644 index 00000000..3f381dcd --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setCardPosition.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / setCardPosition + +# Variable: setCardPosition + +> **setCardPosition**: `ActionCreatorWithPayload`\<\{ `sessionId`: `string`; `x`: `number`; `y`: `number`; \}, `"dashboardLayout/setCardPosition"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1052](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1052) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setCardSize.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setCardSize.md new file mode 100644 index 00000000..b804db29 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setCardSize.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / setCardSize + +# Variable: setCardSize + +> **setCardSize**: `ActionCreatorWithPayload`\<\{ `height`: `number`; `sessionId`: `string`; `width`: `number`; \}, `"dashboardLayout/setCardSize"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1054](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1054) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setGlowingAgentCard.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setGlowingAgentCard.md new file mode 100644 index 00000000..6b892928 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setGlowingAgentCard.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / setGlowingAgentCard + +# Variable: setGlowingAgentCard + +> **setGlowingAgentCard**: `ActionCreatorWithPayload`\<\{ `label?`: `string`; `sessionId`: `string`; `sourceId`: `string`; `sourceYRatio?`: `number`; \}, `"dashboardLayout/setGlowingAgentCard"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1085](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1085) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setGlowingBrowserCards.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setGlowingBrowserCards.md new file mode 100644 index 00000000..c2918816 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setGlowingBrowserCards.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / setGlowingBrowserCards + +# Variable: setGlowingBrowserCards + +> **setGlowingBrowserCards**: `ActionCreatorWithPayload`\<\{ `browserIds`: `string`[]; `label?`: `string`; `sessionId`: `string`; \}, `"dashboardLayout/setGlowingBrowserCards"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1081](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1081) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setNoteColor.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setNoteColor.md new file mode 100644 index 00000000..1f8f52ef --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setNoteColor.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / setNoteColor + +# Variable: setNoteColor + +> **setNoteColor**: `ActionCreatorWithPayload`\<\{ `color`: [`NoteColor`](../type-aliases/NoteColor.md); `noteId`: `string`; \}, `"dashboardLayout/setNoteColor"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1093](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1093) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setNotePosition.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setNotePosition.md new file mode 100644 index 00000000..24baf02b --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setNotePosition.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / setNotePosition + +# Variable: setNotePosition + +> **setNotePosition**: `ActionCreatorWithPayload`\<\{ `noteId`: `string`; `x`: `number`; `y`: `number`; \}, `"dashboardLayout/setNotePosition"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1090](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1090) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setNoteSize.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setNoteSize.md new file mode 100644 index 00000000..3289be09 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setNoteSize.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / setNoteSize + +# Variable: setNoteSize + +> **setNoteSize**: `ActionCreatorWithPayload`\<\{ `height`: `number`; `noteId`: `string`; `width`: `number`; \}, `"dashboardLayout/setNoteSize"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1091](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1091) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setViewCardPosition.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setViewCardPosition.md new file mode 100644 index 00000000..3de9ced3 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setViewCardPosition.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / setViewCardPosition + +# Variable: setViewCardPosition + +> **setViewCardPosition**: `ActionCreatorWithPayload`\<\{ `outputId`: `string`; `x`: `number`; `y`: `number`; \}, `"dashboardLayout/setViewCardPosition"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1061](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1061) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setViewCardSize.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setViewCardSize.md new file mode 100644 index 00000000..77a2ed8b --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/setViewCardSize.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / setViewCardSize + +# Variable: setViewCardSize + +> **setViewCardSize**: `ActionCreatorWithPayload`\<\{ `height`: `number`; `outputId`: `string`; `width`: `number`; \}, `"dashboardLayout/setViewCardSize"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1062](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1062) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/suspendBrowserCard.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/suspendBrowserCard.md new file mode 100644 index 00000000..e0b52837 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/suspendBrowserCard.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / suspendBrowserCard + +# Variable: suspendBrowserCard + +> **suspendBrowserCard**: `ActionCreatorWithPayload`\<\{ `browserId`: `string`; `dataUrl`: `string`; \}, `"dashboardLayout/suspendBrowserCard"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1069](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1069) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/tidyLayout.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/tidyLayout.md new file mode 100644 index 00000000..f0d4c282 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/tidyLayout.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / tidyLayout + +# Variable: tidyLayout + +> **tidyLayout**: `ActionCreatorWithPayload`\<\{ `expandedSessionIds`: `string`[]; \}, `"dashboardLayout/tidyLayout"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1059](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1059) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/updateBrowserCardUrl.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/updateBrowserCardUrl.md new file mode 100644 index 00000000..de188be1 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/updateBrowserCardUrl.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / updateBrowserCardUrl + +# Variable: updateBrowserCardUrl + +> **updateBrowserCardUrl**: `ActionCreatorWithPayload`\<\{ `browserId`: `string`; `url`: `string`; \}, `"dashboardLayout/updateBrowserCardUrl"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1072](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1072) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/updateBrowserTabFavicon.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/updateBrowserTabFavicon.md new file mode 100644 index 00000000..8d397ab9 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/updateBrowserTabFavicon.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / updateBrowserTabFavicon + +# Variable: updateBrowserTabFavicon + +> **updateBrowserTabFavicon**: `ActionCreatorWithPayload`\<\{ `browserId`: `string`; `favicon`: `string`; `tabId`: `string`; \}, `"dashboardLayout/updateBrowserTabFavicon"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1078](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1078) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/updateBrowserTabTitle.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/updateBrowserTabTitle.md new file mode 100644 index 00000000..a2b60988 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/updateBrowserTabTitle.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / updateBrowserTabTitle + +# Variable: updateBrowserTabTitle + +> **updateBrowserTabTitle**: `ActionCreatorWithPayload`\<\{ `browserId`: `string`; `tabId`: `string`; `title`: `string`; \}, `"dashboardLayout/updateBrowserTabTitle"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1077](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1077) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/updateBrowserTabUrl.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/updateBrowserTabUrl.md new file mode 100644 index 00000000..0d846865 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/updateBrowserTabUrl.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / updateBrowserTabUrl + +# Variable: updateBrowserTabUrl + +> **updateBrowserTabUrl**: `ActionCreatorWithPayload`\<\{ `browserId`: `string`; `tabId`: `string`; `url`: `string`; \}, `"dashboardLayout/updateBrowserTabUrl"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1076](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1076) diff --git a/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/updateNoteContent.md b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/updateNoteContent.md new file mode 100644 index 00000000..62c665a5 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardLayoutSlice/variables/updateNoteContent.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardLayoutSlice](../README.md) / updateNoteContent + +# Variable: updateNoteContent + +> **updateNoteContent**: `ActionCreatorWithPayload`\<\{ `content`: `string`; `noteId`: `string`; \}, `"dashboardLayout/updateNoteContent"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardLayoutSlice.ts:1092](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardLayoutSlice.ts#L1092) diff --git a/frontend/.typedoc/shared/state/dashboardsSlice/README.md b/frontend/.typedoc/shared/state/dashboardsSlice/README.md new file mode 100644 index 00000000..263c02ea --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardsSlice/README.md @@ -0,0 +1,22 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / shared/state/dashboardsSlice + +# shared/state/dashboardsSlice + +## Interfaces + +- [Dashboard](interfaces/Dashboard.md) + +## Variables + +- [createDashboard](variables/createDashboard.md) +- [default](variables/default.md) +- [deleteDashboard](variables/deleteDashboard.md) +- [duplicateDashboard](variables/duplicateDashboard.md) +- [fetchDashboards](variables/fetchDashboards.md) +- [generateDashboardName](variables/generateDashboardName.md) +- [renameDashboard](variables/renameDashboard.md) +- [updateDashboardThumbnail](variables/updateDashboardThumbnail.md) diff --git a/frontend/.typedoc/shared/state/dashboardsSlice/interfaces/Dashboard.md b/frontend/.typedoc/shared/state/dashboardsSlice/interfaces/Dashboard.md new file mode 100644 index 00000000..69ef5677 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardsSlice/interfaces/Dashboard.md @@ -0,0 +1,77 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardsSlice](../README.md) / Dashboard + +# Interface: Dashboard + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardsSlice.ts:6](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardsSlice.ts#L6) + +## Properties + +### auto\_named + +> **auto\_named**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardsSlice.ts:9](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardsSlice.ts#L9) + +*** + +### created\_at + +> **created\_at**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardsSlice.ts:10](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardsSlice.ts#L10) + +*** + +### id + +> **id**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardsSlice.ts:7](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardsSlice.ts#L7) + +*** + +### name + +> **name**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardsSlice.ts:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardsSlice.ts#L8) + +*** + +### preview\_signature? + +> `optional` **preview\_signature?**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardsSlice.ts:16](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardsSlice.ts#L16) + +Sorted card-id set at last screenshot; compared on exit to decide if cards changed. + +*** + +### preview\_updated\_at? + +> `optional` **preview\_updated\_at?**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardsSlice.ts:14](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardsSlice.ts#L14) + +Bumped only on a real screenshot save; sidebar/grids sort by this so opening a dashboard doesn't reorder it. + +*** + +### thumbnail? + +> `optional` **thumbnail?**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardsSlice.ts:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardsSlice.ts#L12) + +*** + +### updated\_at + +> **updated\_at**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardsSlice.ts:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardsSlice.ts#L11) diff --git a/frontend/.typedoc/shared/state/dashboardsSlice/variables/createDashboard.md b/frontend/.typedoc/shared/state/dashboardsSlice/variables/createDashboard.md new file mode 100644 index 00000000..caa776f3 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardsSlice/variables/createDashboard.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardsSlice](../README.md) / createDashboard + +# Variable: createDashboard + +> `const` **createDashboard**: `AsyncThunk`\<[`Dashboard`](../interfaces/Dashboard.md), `string`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardsSlice.ts:35](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardsSlice.ts#L35) diff --git a/frontend/.typedoc/shared/state/dashboardsSlice/variables/default.md b/frontend/.typedoc/shared/state/dashboardsSlice/variables/default.md new file mode 100644 index 00000000..4717d88e --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardsSlice/variables/default.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardsSlice](../README.md) / default + +# Variable: default + +> **default**: `Reducer`\<`DashboardsState`\> + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@reduxjs/toolkit/dist/index.d.mts:1546 + +The slice's reducer. diff --git a/frontend/.typedoc/shared/state/dashboardsSlice/variables/deleteDashboard.md b/frontend/.typedoc/shared/state/dashboardsSlice/variables/deleteDashboard.md new file mode 100644 index 00000000..c61e8946 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardsSlice/variables/deleteDashboard.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardsSlice](../README.md) / deleteDashboard + +# Variable: deleteDashboard + +> `const` **deleteDashboard**: `AsyncThunk`\<`string`, `string`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardsSlice.ts:60](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardsSlice.ts#L60) diff --git a/frontend/.typedoc/shared/state/dashboardsSlice/variables/duplicateDashboard.md b/frontend/.typedoc/shared/state/dashboardsSlice/variables/duplicateDashboard.md new file mode 100644 index 00000000..4921b92c --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardsSlice/variables/duplicateDashboard.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardsSlice](../README.md) / duplicateDashboard + +# Variable: duplicateDashboard + +> `const` **duplicateDashboard**: `AsyncThunk`\<[`Dashboard`](../interfaces/Dashboard.md), `string`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardsSlice.ts:68](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardsSlice.ts#L68) diff --git a/frontend/.typedoc/shared/state/dashboardsSlice/variables/fetchDashboards.md b/frontend/.typedoc/shared/state/dashboardsSlice/variables/fetchDashboards.md new file mode 100644 index 00000000..9f262c2b --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardsSlice/variables/fetchDashboards.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardsSlice](../README.md) / fetchDashboards + +# Variable: fetchDashboards + +> `const` **fetchDashboards**: `AsyncThunk`\<[`Dashboard`](../interfaces/Dashboard.md)[], `void`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardsSlice.ts:29](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardsSlice.ts#L29) diff --git a/frontend/.typedoc/shared/state/dashboardsSlice/variables/generateDashboardName.md b/frontend/.typedoc/shared/state/dashboardsSlice/variables/generateDashboardName.md new file mode 100644 index 00000000..5303e35d --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardsSlice/variables/generateDashboardName.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardsSlice](../README.md) / generateDashboardName + +# Variable: generateDashboardName + +> `const` **generateDashboardName**: `AsyncThunk`\<\{ `auto_named`: `boolean`; `id`: `string`; `name`: `string`; \}, `string`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardsSlice.ts:97](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardsSlice.ts#L97) diff --git a/frontend/.typedoc/shared/state/dashboardsSlice/variables/renameDashboard.md b/frontend/.typedoc/shared/state/dashboardsSlice/variables/renameDashboard.md new file mode 100644 index 00000000..370a9ad5 --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardsSlice/variables/renameDashboard.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardsSlice](../README.md) / renameDashboard + +# Variable: renameDashboard + +> `const` **renameDashboard**: `AsyncThunk`\<[`Dashboard`](../interfaces/Dashboard.md), \{ `id`: `string`; `name`: `string`; `previousName?`: `string`; \}, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardsSlice.ts:47](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardsSlice.ts#L47) diff --git a/frontend/.typedoc/shared/state/dashboardsSlice/variables/updateDashboardThumbnail.md b/frontend/.typedoc/shared/state/dashboardsSlice/variables/updateDashboardThumbnail.md new file mode 100644 index 00000000..f79855be --- /dev/null +++ b/frontend/.typedoc/shared/state/dashboardsSlice/variables/updateDashboardThumbnail.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/dashboardsSlice](../README.md) / updateDashboardThumbnail + +# Variable: updateDashboardThumbnail + +> `const` **updateDashboardThumbnail**: `AsyncThunk`\<\{ `id`: `string`; `preview_signature`: `string` \| `null`; `preview_updated_at`: `string` \| `null`; `thumbnail`: `string` \| `null`; `updated_at`: `string`; \}, \{ `id`: `string`; `signature`: `string`; `thumbnail`: `string`; \}, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/dashboardsSlice.ts:76](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/dashboardsSlice.ts#L76) diff --git a/frontend/.typedoc/shared/state/interactionSlice/README.md b/frontend/.typedoc/shared/state/interactionSlice/README.md new file mode 100644 index 00000000..0604ab0a --- /dev/null +++ b/frontend/.typedoc/shared/state/interactionSlice/README.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / shared/state/interactionSlice + +# shared/state/interactionSlice + +## Variables + +- [appStartReset](variables/appStartReset.md) +- [default](variables/default.md) +- [interactionRecorded](variables/interactionRecorded.md) diff --git a/frontend/.typedoc/shared/state/interactionSlice/variables/appStartReset.md b/frontend/.typedoc/shared/state/interactionSlice/variables/appStartReset.md new file mode 100644 index 00000000..bea5778f --- /dev/null +++ b/frontend/.typedoc/shared/state/interactionSlice/variables/appStartReset.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/interactionSlice](../README.md) / appStartReset + +# Variable: appStartReset + +> **appStartReset**: `ActionCreatorWithoutPayload`\<`"interaction/appStartReset"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/interactionSlice.ts:36](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/interactionSlice.ts#L36) diff --git a/frontend/.typedoc/shared/state/interactionSlice/variables/default.md b/frontend/.typedoc/shared/state/interactionSlice/variables/default.md new file mode 100644 index 00000000..e34317c3 --- /dev/null +++ b/frontend/.typedoc/shared/state/interactionSlice/variables/default.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/interactionSlice](../README.md) / default + +# Variable: default + +> **default**: `Reducer`\<`InteractionState`\> + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@reduxjs/toolkit/dist/index.d.mts:1546 + +The slice's reducer. diff --git a/frontend/.typedoc/shared/state/interactionSlice/variables/interactionRecorded.md b/frontend/.typedoc/shared/state/interactionSlice/variables/interactionRecorded.md new file mode 100644 index 00000000..6ad6fe29 --- /dev/null +++ b/frontend/.typedoc/shared/state/interactionSlice/variables/interactionRecorded.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/interactionSlice](../README.md) / interactionRecorded + +# Variable: interactionRecorded + +> **interactionRecorded**: `ActionCreatorWithPayload`\<\{ `at?`: `number`; `surface?`: `string`; \}, `"interaction/interactionRecorded"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/interactionSlice.ts:36](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/interactionSlice.ts#L36) diff --git a/frontend/.typedoc/shared/state/mcpRegistrySlice/README.md b/frontend/.typedoc/shared/state/mcpRegistrySlice/README.md new file mode 100644 index 00000000..4f3bb625 --- /dev/null +++ b/frontend/.typedoc/shared/state/mcpRegistrySlice/README.md @@ -0,0 +1,20 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / shared/state/mcpRegistrySlice + +# shared/state/mcpRegistrySlice + +## Interfaces + +- [McpServer](interfaces/McpServer.md) +- [McpServerDetail](interfaces/McpServerDetail.md) + +## Variables + +- [clearDetail](variables/clearDetail.md) +- [default](variables/default.md) +- [fetchRegistryStats](variables/fetchRegistryStats.md) +- [fetchServerDetail](variables/fetchServerDetail.md) +- [searchRegistry](variables/searchRegistry.md) diff --git a/frontend/.typedoc/shared/state/mcpRegistrySlice/interfaces/McpServer.md b/frontend/.typedoc/shared/state/mcpRegistrySlice/interfaces/McpServer.md new file mode 100644 index 00000000..6a5978e4 --- /dev/null +++ b/frontend/.typedoc/shared/state/mcpRegistrySlice/interfaces/McpServer.md @@ -0,0 +1,101 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/mcpRegistrySlice](../README.md) / McpServer + +# Interface: McpServer + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/mcpRegistrySlice.ts:6](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/mcpRegistrySlice.ts#L6) + +## Extended by + +- [`McpServerDetail`](McpServerDetail.md) + +## Properties + +### description + +> **description**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/mcpRegistrySlice.ts:9](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/mcpRegistrySlice.ts#L9) + +*** + +### iconUrl + +> **iconUrl**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/mcpRegistrySlice.ts:15](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/mcpRegistrySlice.ts#L15) + +*** + +### name + +> **name**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/mcpRegistrySlice.ts:7](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/mcpRegistrySlice.ts#L7) + +*** + +### remoteType + +> **remoteType**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/mcpRegistrySlice.ts:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/mcpRegistrySlice.ts#L12) + +*** + +### remoteUrl + +> **remoteUrl**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/mcpRegistrySlice.ts:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/mcpRegistrySlice.ts#L11) + +*** + +### repositoryUrl + +> **repositoryUrl**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/mcpRegistrySlice.ts:13](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/mcpRegistrySlice.ts#L13) + +*** + +### source + +> **source**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/mcpRegistrySlice.ts:17](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/mcpRegistrySlice.ts#L17) + +*** + +### stars + +> **stars**: `number` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/mcpRegistrySlice.ts:16](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/mcpRegistrySlice.ts#L16) + +*** + +### title + +> **title**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/mcpRegistrySlice.ts:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/mcpRegistrySlice.ts#L8) + +*** + +### version + +> **version**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/mcpRegistrySlice.ts:10](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/mcpRegistrySlice.ts#L10) + +*** + +### websiteUrl + +> **websiteUrl**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/mcpRegistrySlice.ts:14](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/mcpRegistrySlice.ts#L14) diff --git a/frontend/.typedoc/shared/state/mcpRegistrySlice/interfaces/McpServerDetail.md b/frontend/.typedoc/shared/state/mcpRegistrySlice/interfaces/McpServerDetail.md new file mode 100644 index 00000000..d9e71922 --- /dev/null +++ b/frontend/.typedoc/shared/state/mcpRegistrySlice/interfaces/McpServerDetail.md @@ -0,0 +1,185 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/mcpRegistrySlice](../README.md) / McpServerDetail + +# Interface: McpServerDetail + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/mcpRegistrySlice.ts:20](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/mcpRegistrySlice.ts#L20) + +## Extends + +- [`McpServer`](McpServer.md) + +## Properties + +### description + +> **description**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/mcpRegistrySlice.ts:9](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/mcpRegistrySlice.ts#L9) + +#### Inherited from + +[`McpServer`](McpServer.md).[`description`](McpServer.md#description) + +*** + +### environmentVariables + +> **environmentVariables**: `object`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/mcpRegistrySlice.ts:21](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/mcpRegistrySlice.ts#L21) + +#### default? + +> `optional` **default?**: `string` + +#### description + +> **description**: `string` + +#### format? + +> `optional` **format?**: `string` + +#### name + +> **name**: `string` + +*** + +### iconUrl + +> **iconUrl**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/mcpRegistrySlice.ts:15](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/mcpRegistrySlice.ts#L15) + +#### Inherited from + +[`McpServer`](McpServer.md).[`iconUrl`](McpServer.md#iconurl) + +*** + +### keywords + +> **keywords**: `string`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/mcpRegistrySlice.ts:22](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/mcpRegistrySlice.ts#L22) + +*** + +### license + +> **license**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/mcpRegistrySlice.ts:23](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/mcpRegistrySlice.ts#L23) + +*** + +### name + +> **name**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/mcpRegistrySlice.ts:7](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/mcpRegistrySlice.ts#L7) + +#### Inherited from + +[`McpServer`](McpServer.md).[`name`](McpServer.md#name) + +*** + +### remoteType + +> **remoteType**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/mcpRegistrySlice.ts:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/mcpRegistrySlice.ts#L12) + +#### Inherited from + +[`McpServer`](McpServer.md).[`remoteType`](McpServer.md#remotetype) + +*** + +### remoteUrl + +> **remoteUrl**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/mcpRegistrySlice.ts:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/mcpRegistrySlice.ts#L11) + +#### Inherited from + +[`McpServer`](McpServer.md).[`remoteUrl`](McpServer.md#remoteurl) + +*** + +### repositoryUrl + +> **repositoryUrl**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/mcpRegistrySlice.ts:13](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/mcpRegistrySlice.ts#L13) + +#### Inherited from + +[`McpServer`](McpServer.md).[`repositoryUrl`](McpServer.md#repositoryurl) + +*** + +### source + +> **source**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/mcpRegistrySlice.ts:17](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/mcpRegistrySlice.ts#L17) + +#### Inherited from + +[`McpServer`](McpServer.md).[`source`](McpServer.md#source) + +*** + +### stars + +> **stars**: `number` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/mcpRegistrySlice.ts:16](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/mcpRegistrySlice.ts#L16) + +#### Inherited from + +[`McpServer`](McpServer.md).[`stars`](McpServer.md#stars) + +*** + +### title + +> **title**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/mcpRegistrySlice.ts:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/mcpRegistrySlice.ts#L8) + +#### Inherited from + +[`McpServer`](McpServer.md).[`title`](McpServer.md#title) + +*** + +### version + +> **version**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/mcpRegistrySlice.ts:10](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/mcpRegistrySlice.ts#L10) + +#### Inherited from + +[`McpServer`](McpServer.md).[`version`](McpServer.md#version) + +*** + +### websiteUrl + +> **websiteUrl**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/mcpRegistrySlice.ts:14](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/mcpRegistrySlice.ts#L14) + +#### Inherited from + +[`McpServer`](McpServer.md).[`websiteUrl`](McpServer.md#websiteurl) diff --git a/frontend/.typedoc/shared/state/mcpRegistrySlice/variables/clearDetail.md b/frontend/.typedoc/shared/state/mcpRegistrySlice/variables/clearDetail.md new file mode 100644 index 00000000..c34fb28a --- /dev/null +++ b/frontend/.typedoc/shared/state/mcpRegistrySlice/variables/clearDetail.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/mcpRegistrySlice](../README.md) / clearDetail + +# Variable: clearDetail + +> **clearDetail**: `ActionCreatorWithoutPayload`\<`"mcpRegistry/clearDetail"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/mcpRegistrySlice.ts:114](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/mcpRegistrySlice.ts#L114) diff --git a/frontend/.typedoc/shared/state/mcpRegistrySlice/variables/default.md b/frontend/.typedoc/shared/state/mcpRegistrySlice/variables/default.md new file mode 100644 index 00000000..200f24d9 --- /dev/null +++ b/frontend/.typedoc/shared/state/mcpRegistrySlice/variables/default.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/mcpRegistrySlice](../README.md) / default + +# Variable: default + +> **default**: `Reducer`\<`McpRegistryState`\> + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@reduxjs/toolkit/dist/index.d.mts:1546 + +The slice's reducer. diff --git a/frontend/.typedoc/shared/state/mcpRegistrySlice/variables/fetchRegistryStats.md b/frontend/.typedoc/shared/state/mcpRegistrySlice/variables/fetchRegistryStats.md new file mode 100644 index 00000000..50f426f8 --- /dev/null +++ b/frontend/.typedoc/shared/state/mcpRegistrySlice/variables/fetchRegistryStats.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/mcpRegistrySlice](../README.md) / fetchRegistryStats + +# Variable: fetchRegistryStats + +> `const` **fetchRegistryStats**: `AsyncThunk`\<\{ `community`: `number`; `google`: `number`; `lastUpdated`: `number`; `total`: `number`; \}, `void`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/mcpRegistrySlice.ts:57](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/mcpRegistrySlice.ts#L57) diff --git a/frontend/.typedoc/shared/state/mcpRegistrySlice/variables/fetchServerDetail.md b/frontend/.typedoc/shared/state/mcpRegistrySlice/variables/fetchServerDetail.md new file mode 100644 index 00000000..f29692ce --- /dev/null +++ b/frontend/.typedoc/shared/state/mcpRegistrySlice/variables/fetchServerDetail.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/mcpRegistrySlice](../README.md) / fetchServerDetail + +# Variable: fetchServerDetail + +> `const` **fetchServerDetail**: `AsyncThunk`\<[`McpServerDetail`](../interfaces/McpServerDetail.md), `string`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/mcpRegistrySlice.ts:62](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/mcpRegistrySlice.ts#L62) diff --git a/frontend/.typedoc/shared/state/mcpRegistrySlice/variables/searchRegistry.md b/frontend/.typedoc/shared/state/mcpRegistrySlice/variables/searchRegistry.md new file mode 100644 index 00000000..8651a107 --- /dev/null +++ b/frontend/.typedoc/shared/state/mcpRegistrySlice/variables/searchRegistry.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/mcpRegistrySlice](../README.md) / searchRegistry + +# Variable: searchRegistry + +> `const` **searchRegistry**: `AsyncThunk`\<\{ `limit`: `number`; `offset`: `number`; `servers`: [`McpServer`](../interfaces/McpServer.md)[]; `total`: `number`; \}, \{ `limit?`: `number`; `offset?`: `number`; `q`: `string`; `sort?`: `string`; `source?`: `string`; \}, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/mcpRegistrySlice.ts:48](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/mcpRegistrySlice.ts#L48) diff --git a/frontend/.typedoc/shared/state/modelsSlice/README.md b/frontend/.typedoc/shared/state/modelsSlice/README.md new file mode 100644 index 00000000..f9a963cc --- /dev/null +++ b/frontend/.typedoc/shared/state/modelsSlice/README.md @@ -0,0 +1,16 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / shared/state/modelsSlice + +# shared/state/modelsSlice + +## Interfaces + +- [ModelOption](interfaces/ModelOption.md) + +## Variables + +- [default](variables/default.md) +- [fetchModels](variables/fetchModels.md) diff --git a/frontend/.typedoc/shared/state/modelsSlice/interfaces/ModelOption.md b/frontend/.typedoc/shared/state/modelsSlice/interfaces/ModelOption.md new file mode 100644 index 00000000..3dac50fc --- /dev/null +++ b/frontend/.typedoc/shared/state/modelsSlice/interfaces/ModelOption.md @@ -0,0 +1,99 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/modelsSlice](../README.md) / ModelOption + +# Interface: ModelOption + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/modelsSlice.ts:6](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/modelsSlice.ts#L6) + +## Properties + +### billing\_kind? + +> `optional` **billing\_kind?**: `"subscription"` \| `"paid"` \| `"free"` \| `"api_key"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/modelsSlice.ts:18](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/modelsSlice.ts#L18) + +*** + +### context\_window + +> **context\_window**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/modelsSlice.ts:10](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/modelsSlice.ts#L10) + +*** + +### input\_cost\_per\_1m? + +> `optional` **input\_cost\_per\_1m?**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/modelsSlice.ts:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/modelsSlice.ts#L12) + +*** + +### is\_free? + +> `optional` **is\_free?**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/modelsSlice.ts:14](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/modelsSlice.ts#L14) + +*** + +### label + +> **label**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/modelsSlice.ts:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/modelsSlice.ts#L8) + +*** + +### max\_completion\_tokens? + +> `optional` **max\_completion\_tokens?**: `number` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/modelsSlice.ts:15](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/modelsSlice.ts#L15) + +*** + +### output\_cost\_per\_1m? + +> `optional` **output\_cost\_per\_1m?**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/modelsSlice.ts:13](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/modelsSlice.ts#L13) + +*** + +### reasoning? + +> `optional` **reasoning?**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/modelsSlice.ts:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/modelsSlice.ts#L11) + +*** + +### tiers? + +> `optional` **tiers?**: \[`number`, `number`, `number`\] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/modelsSlice.ts:17](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/modelsSlice.ts#L17) + +(intelligence, speed, cost), 1-5. + +*** + +### value + +> **value**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/modelsSlice.ts:7](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/modelsSlice.ts#L7) + +*** + +### version? + +> `optional` **version?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/modelsSlice.ts:9](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/modelsSlice.ts#L9) diff --git a/frontend/.typedoc/shared/state/modelsSlice/variables/default.md b/frontend/.typedoc/shared/state/modelsSlice/variables/default.md new file mode 100644 index 00000000..445fad60 --- /dev/null +++ b/frontend/.typedoc/shared/state/modelsSlice/variables/default.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/modelsSlice](../README.md) / default + +# Variable: default + +> **default**: `Reducer`\<`ModelsState`\> + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@reduxjs/toolkit/dist/index.d.mts:1546 + +The slice's reducer. diff --git a/frontend/.typedoc/shared/state/modelsSlice/variables/fetchModels.md b/frontend/.typedoc/shared/state/modelsSlice/variables/fetchModels.md new file mode 100644 index 00000000..7a29c1b6 --- /dev/null +++ b/frontend/.typedoc/shared/state/modelsSlice/variables/fetchModels.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/modelsSlice](../README.md) / fetchModels + +# Variable: fetchModels + +> `const` **fetchModels**: `AsyncThunk`\<`Record`\<`string`, [`ModelOption`](../interfaces/ModelOption.md)[]\>, `void`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/modelsSlice.ts:31](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/modelsSlice.ts#L31) diff --git a/frontend/.typedoc/shared/state/modesSlice/README.md b/frontend/.typedoc/shared/state/modesSlice/README.md new file mode 100644 index 00000000..37f87367 --- /dev/null +++ b/frontend/.typedoc/shared/state/modesSlice/README.md @@ -0,0 +1,20 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / shared/state/modesSlice + +# shared/state/modesSlice + +## Interfaces + +- [Mode](interfaces/Mode.md) + +## Variables + +- [createMode](variables/createMode.md) +- [default](variables/default.md) +- [deleteMode](variables/deleteMode.md) +- [fetchModes](variables/fetchModes.md) +- [resetMode](variables/resetMode.md) +- [updateMode](variables/updateMode.md) diff --git a/frontend/.typedoc/shared/state/modesSlice/interfaces/Mode.md b/frontend/.typedoc/shared/state/modesSlice/interfaces/Mode.md new file mode 100644 index 00000000..68a0252b --- /dev/null +++ b/frontend/.typedoc/shared/state/modesSlice/interfaces/Mode.md @@ -0,0 +1,89 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/modesSlice](../README.md) / Mode + +# Interface: Mode + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/modesSlice.ts:6](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/modesSlice.ts#L6) + +## Properties + +### color + +> **color**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/modesSlice.ts:15](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/modesSlice.ts#L15) + +*** + +### default\_folder + +> **default\_folder**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/modesSlice.ts:16](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/modesSlice.ts#L16) + +*** + +### default\_next\_mode + +> **default\_next\_mode**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/modesSlice.ts:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/modesSlice.ts#L12) + +*** + +### description + +> **description**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/modesSlice.ts:9](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/modesSlice.ts#L9) + +*** + +### icon + +> **icon**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/modesSlice.ts:14](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/modesSlice.ts#L14) + +*** + +### id + +> **id**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/modesSlice.ts:7](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/modesSlice.ts#L7) + +*** + +### is\_builtin + +> **is\_builtin**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/modesSlice.ts:13](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/modesSlice.ts#L13) + +*** + +### name + +> **name**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/modesSlice.ts:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/modesSlice.ts#L8) + +*** + +### system\_prompt + +> **system\_prompt**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/modesSlice.ts:10](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/modesSlice.ts#L10) + +*** + +### tools + +> **tools**: `string`[] \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/modesSlice.ts:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/modesSlice.ts#L11) diff --git a/frontend/.typedoc/shared/state/modesSlice/variables/createMode.md b/frontend/.typedoc/shared/state/modesSlice/variables/createMode.md new file mode 100644 index 00000000..4c0bcfd0 --- /dev/null +++ b/frontend/.typedoc/shared/state/modesSlice/variables/createMode.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/modesSlice](../README.md) / createMode + +# Variable: createMode + +> `const` **createMode**: `AsyncThunk`\<[`Mode`](../interfaces/Mode.md), `Omit`\<[`Mode`](../interfaces/Mode.md), `"id"` \| `"is_builtin"`\>, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/modesSlice.ts:38](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/modesSlice.ts#L38) diff --git a/frontend/.typedoc/shared/state/modesSlice/variables/default.md b/frontend/.typedoc/shared/state/modesSlice/variables/default.md new file mode 100644 index 00000000..b15c5549 --- /dev/null +++ b/frontend/.typedoc/shared/state/modesSlice/variables/default.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/modesSlice](../README.md) / default + +# Variable: default + +> **default**: `Reducer`\<`ModesState`\> + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@reduxjs/toolkit/dist/index.d.mts:1546 + +The slice's reducer. diff --git a/frontend/.typedoc/shared/state/modesSlice/variables/deleteMode.md b/frontend/.typedoc/shared/state/modesSlice/variables/deleteMode.md new file mode 100644 index 00000000..867d96f6 --- /dev/null +++ b/frontend/.typedoc/shared/state/modesSlice/variables/deleteMode.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/modesSlice](../README.md) / deleteMode + +# Variable: deleteMode + +> `const` **deleteMode**: `AsyncThunk`\<`string`, `string`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/modesSlice.ts:73](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/modesSlice.ts#L73) diff --git a/frontend/.typedoc/shared/state/modesSlice/variables/fetchModes.md b/frontend/.typedoc/shared/state/modesSlice/variables/fetchModes.md new file mode 100644 index 00000000..0b3140f9 --- /dev/null +++ b/frontend/.typedoc/shared/state/modesSlice/variables/fetchModes.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/modesSlice](../README.md) / fetchModes + +# Variable: fetchModes + +> `const` **fetchModes**: `AsyncThunk`\<\{ `builtinDefaults`: `Record`\<`string`, [`Mode`](../interfaces/Mode.md)\>; `modes`: [`Mode`](../interfaces/Mode.md)[]; \}, `void`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/modesSlice.ts:28](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/modesSlice.ts#L28) diff --git a/frontend/.typedoc/shared/state/modesSlice/variables/resetMode.md b/frontend/.typedoc/shared/state/modesSlice/variables/resetMode.md new file mode 100644 index 00000000..7b180962 --- /dev/null +++ b/frontend/.typedoc/shared/state/modesSlice/variables/resetMode.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/modesSlice](../README.md) / resetMode + +# Variable: resetMode + +> `const` **resetMode**: `AsyncThunk`\<[`Mode`](../interfaces/Mode.md), `string`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/modesSlice.ts:64](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/modesSlice.ts#L64) diff --git a/frontend/.typedoc/shared/state/modesSlice/variables/updateMode.md b/frontend/.typedoc/shared/state/modesSlice/variables/updateMode.md new file mode 100644 index 00000000..b28bdd72 --- /dev/null +++ b/frontend/.typedoc/shared/state/modesSlice/variables/updateMode.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/modesSlice](../README.md) / updateMode + +# Variable: updateMode + +> `const` **updateMode**: `AsyncThunk`\<[`Mode`](../interfaces/Mode.md), `Partial`\<[`Mode`](../interfaces/Mode.md)\> & `object`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/modesSlice.ts:51](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/modesSlice.ts#L51) diff --git a/frontend/.typedoc/shared/state/onboardingProgressSlice/README.md b/frontend/.typedoc/shared/state/onboardingProgressSlice/README.md new file mode 100644 index 00000000..f81e10e8 --- /dev/null +++ b/frontend/.typedoc/shared/state/onboardingProgressSlice/README.md @@ -0,0 +1,36 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / shared/state/onboardingProgressSlice + +# shared/state/onboardingProgressSlice + +## Interfaces + +- [OnboardingProgressState](interfaces/OnboardingProgressState.md) +- [PerStepState](interfaces/PerStepState.md) + +## Type Aliases + +- [PanelMode](type-aliases/PanelMode.md) + +## Variables + +- [clearJustCompleted](variables/clearJustCompleted.md) +- [default](variables/default.md) +- [hydrate](variables/hydrate.md) +- [init](variables/init.md) +- [markStepCompleted](variables/markStepCompleted.md) +- [recordMultiChoice](variables/recordMultiChoice.md) +- [resetTour](variables/resetTour.md) +- [setCurrentStep](variables/setCurrentStep.md) +- [setPanelMode](variables/setPanelMode.md) +- [setRunning](variables/setRunning.md) +- [unmarkStepCompleted](variables/unmarkStepCompleted.md) + +## Functions + +- [disableOnboardingAfterCrash](functions/disableOnboardingAfterCrash.md) +- [loadFromStorage](functions/loadFromStorage.md) +- [persistToStorage](functions/persistToStorage.md) diff --git a/frontend/.typedoc/shared/state/onboardingProgressSlice/functions/disableOnboardingAfterCrash.md b/frontend/.typedoc/shared/state/onboardingProgressSlice/functions/disableOnboardingAfterCrash.md new file mode 100644 index 00000000..008fa47f --- /dev/null +++ b/frontend/.typedoc/shared/state/onboardingProgressSlice/functions/disableOnboardingAfterCrash.md @@ -0,0 +1,17 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/onboardingProgressSlice](../README.md) / disableOnboardingAfterCrash + +# Function: disableOnboardingAfterCrash() + +> **disableOnboardingAfterCrash**(): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/onboardingProgressSlice.ts:70](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/onboardingProgressSlice.ts#L70) + +Persist a hidden-on-crash marker straight to storage. The error boundary unmounts OnboardingRoot, so its own debounced persist effect can't run; write here or the dismissal won't survive a reload and the user re-enters the crash. Settings > restart tour clears it. + +## Returns + +`void` diff --git a/frontend/.typedoc/shared/state/onboardingProgressSlice/functions/loadFromStorage.md b/frontend/.typedoc/shared/state/onboardingProgressSlice/functions/loadFromStorage.md new file mode 100644 index 00000000..6edde5a6 --- /dev/null +++ b/frontend/.typedoc/shared/state/onboardingProgressSlice/functions/loadFromStorage.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/onboardingProgressSlice](../README.md) / loadFromStorage + +# Function: loadFromStorage() + +> **loadFromStorage**(): [`OnboardingProgressState`](../interfaces/OnboardingProgressState.md) \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/onboardingProgressSlice.ts:35](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/onboardingProgressSlice.ts#L35) + +## Returns + +[`OnboardingProgressState`](../interfaces/OnboardingProgressState.md) \| `null` diff --git a/frontend/.typedoc/shared/state/onboardingProgressSlice/functions/persistToStorage.md b/frontend/.typedoc/shared/state/onboardingProgressSlice/functions/persistToStorage.md new file mode 100644 index 00000000..ef4785a0 --- /dev/null +++ b/frontend/.typedoc/shared/state/onboardingProgressSlice/functions/persistToStorage.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/onboardingProgressSlice](../README.md) / persistToStorage + +# Function: persistToStorage() + +> **persistToStorage**(`state`): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/onboardingProgressSlice.ts:60](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/onboardingProgressSlice.ts#L60) + +## Parameters + +### state + +[`OnboardingProgressState`](../interfaces/OnboardingProgressState.md) + +## Returns + +`void` diff --git a/frontend/.typedoc/shared/state/onboardingProgressSlice/interfaces/OnboardingProgressState.md b/frontend/.typedoc/shared/state/onboardingProgressSlice/interfaces/OnboardingProgressState.md new file mode 100644 index 00000000..883b8b59 --- /dev/null +++ b/frontend/.typedoc/shared/state/onboardingProgressSlice/interfaces/OnboardingProgressState.md @@ -0,0 +1,105 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/onboardingProgressSlice](../README.md) / OnboardingProgressState + +# Interface: OnboardingProgressState + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/onboardingProgressSlice.ts:17](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/onboardingProgressSlice.ts#L17) + +## Properties + +### completedSteps + +> **completedSteps**: `string`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/onboardingProgressSlice.ts:20](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/onboardingProgressSlice.ts#L20) + +*** + +### currentStepId + +> **currentStepId**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/onboardingProgressSlice.ts:21](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/onboardingProgressSlice.ts#L21) + +*** + +### disableSkipIf + +> **disableSkipIf**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/onboardingProgressSlice.ts:32](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/onboardingProgressSlice.ts#L32) + +True after explicit restart-from-Settings; suppresses skipIf so the tour feels fresh. + +*** + +### dismissedAt + +> **dismissedAt**: `number` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/onboardingProgressSlice.ts:23](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/onboardingProgressSlice.ts#L23) + +*** + +### initialized + +> **initialized**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/onboardingProgressSlice.ts:28](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/onboardingProgressSlice.ts#L28) + +Set on first-launch detection so we don't re-init defaults on every mount. + +*** + +### justCompletedStepId + +> **justCompletedStepId**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/onboardingProgressSlice.ts:30](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/onboardingProgressSlice.ts#L30) + +Brief celebration marker; clearJustCompleted clears it ~1.5s after the animation. + +*** + +### panelMode + +> **panelMode**: [`PanelMode`](../type-aliases/PanelMode.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/onboardingProgressSlice.ts:22](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/onboardingProgressSlice.ts#L22) + +*** + +### perStepState + +> **perStepState**: `Record`\<`string`, [`PerStepState`](PerStepState.md)\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/onboardingProgressSlice.ts:24](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/onboardingProgressSlice.ts#L24) + +*** + +### running + +> **running**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/onboardingProgressSlice.ts:26](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/onboardingProgressSlice.ts#L26) + +Runtime-only; true while AC is executing a step's ops. + +*** + +### startedAt + +> **startedAt**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/onboardingProgressSlice.ts:19](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/onboardingProgressSlice.ts#L19) + +*** + +### version + +> **version**: `2` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/onboardingProgressSlice.ts:18](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/onboardingProgressSlice.ts#L18) diff --git a/frontend/.typedoc/shared/state/onboardingProgressSlice/interfaces/PerStepState.md b/frontend/.typedoc/shared/state/onboardingProgressSlice/interfaces/PerStepState.md new file mode 100644 index 00000000..1bf7160e --- /dev/null +++ b/frontend/.typedoc/shared/state/onboardingProgressSlice/interfaces/PerStepState.md @@ -0,0 +1,35 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/onboardingProgressSlice](../README.md) / PerStepState + +# Interface: PerStepState + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/onboardingProgressSlice.ts:10](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/onboardingProgressSlice.ts#L10) + +## Properties + +### lastViewedAt + +> **lastViewedAt**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/onboardingProgressSlice.ts:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/onboardingProgressSlice.ts#L11) + +*** + +### multiChoiceAnswers? + +> `optional` **multiChoiceAnswers?**: `Record`\<`string`, `string`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/onboardingProgressSlice.ts:14](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/onboardingProgressSlice.ts#L14) + +Multi-choice answers per opId; drives branching and analytics. + +*** + +### videoWatched? + +> `optional` **videoWatched?**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/onboardingProgressSlice.ts:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/onboardingProgressSlice.ts#L12) diff --git a/frontend/.typedoc/shared/state/onboardingProgressSlice/type-aliases/PanelMode.md b/frontend/.typedoc/shared/state/onboardingProgressSlice/type-aliases/PanelMode.md new file mode 100644 index 00000000..124da21a --- /dev/null +++ b/frontend/.typedoc/shared/state/onboardingProgressSlice/type-aliases/PanelMode.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/onboardingProgressSlice](../README.md) / PanelMode + +# Type Alias: PanelMode + +> **PanelMode** = `"pill"` \| `"expanded"` \| `"roadmap"` \| `"hidden"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/onboardingProgressSlice.ts:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/onboardingProgressSlice.ts#L8) diff --git a/frontend/.typedoc/shared/state/onboardingProgressSlice/variables/clearJustCompleted.md b/frontend/.typedoc/shared/state/onboardingProgressSlice/variables/clearJustCompleted.md new file mode 100644 index 00000000..9931b6d3 --- /dev/null +++ b/frontend/.typedoc/shared/state/onboardingProgressSlice/variables/clearJustCompleted.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/onboardingProgressSlice](../README.md) / clearJustCompleted + +# Variable: clearJustCompleted + +> **clearJustCompleted**: `ActionCreatorWithoutPayload`\<`"onboardingProgress/clearJustCompleted"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/onboardingProgressSlice.ts:192](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/onboardingProgressSlice.ts#L192) diff --git a/frontend/.typedoc/shared/state/onboardingProgressSlice/variables/default.md b/frontend/.typedoc/shared/state/onboardingProgressSlice/variables/default.md new file mode 100644 index 00000000..7b799784 --- /dev/null +++ b/frontend/.typedoc/shared/state/onboardingProgressSlice/variables/default.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/onboardingProgressSlice](../README.md) / default + +# Variable: default + +> **default**: `Reducer`\<[`OnboardingProgressState`](../interfaces/OnboardingProgressState.md)\> + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@reduxjs/toolkit/dist/index.d.mts:1546 + +The slice's reducer. diff --git a/frontend/.typedoc/shared/state/onboardingProgressSlice/variables/hydrate.md b/frontend/.typedoc/shared/state/onboardingProgressSlice/variables/hydrate.md new file mode 100644 index 00000000..ad934687 --- /dev/null +++ b/frontend/.typedoc/shared/state/onboardingProgressSlice/variables/hydrate.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/onboardingProgressSlice](../README.md) / hydrate + +# Variable: hydrate + +> **hydrate**: `ActionCreatorWithPayload`\<[`OnboardingProgressState`](../interfaces/OnboardingProgressState.md), `"onboardingProgress/hydrate"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/onboardingProgressSlice.ts:188](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/onboardingProgressSlice.ts#L188) diff --git a/frontend/.typedoc/shared/state/onboardingProgressSlice/variables/init.md b/frontend/.typedoc/shared/state/onboardingProgressSlice/variables/init.md new file mode 100644 index 00000000..ec2cc2e1 --- /dev/null +++ b/frontend/.typedoc/shared/state/onboardingProgressSlice/variables/init.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/onboardingProgressSlice](../README.md) / init + +# Variable: init + +> **init**: `ActionCreatorWithPayload`\<\{ `currentStepId`: `string` \| `null`; `disableSkipIf?`: `boolean`; `preCompleted`: `string`[]; \}, `"onboardingProgress/init"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/onboardingProgressSlice.ts:187](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/onboardingProgressSlice.ts#L187) diff --git a/frontend/.typedoc/shared/state/onboardingProgressSlice/variables/markStepCompleted.md b/frontend/.typedoc/shared/state/onboardingProgressSlice/variables/markStepCompleted.md new file mode 100644 index 00000000..f325d0ff --- /dev/null +++ b/frontend/.typedoc/shared/state/onboardingProgressSlice/variables/markStepCompleted.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/onboardingProgressSlice](../README.md) / markStepCompleted + +# Variable: markStepCompleted + +> **markStepCompleted**: `ActionCreatorWithPayload`\<`string`, `"onboardingProgress/markStepCompleted"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/onboardingProgressSlice.ts:191](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/onboardingProgressSlice.ts#L191) diff --git a/frontend/.typedoc/shared/state/onboardingProgressSlice/variables/recordMultiChoice.md b/frontend/.typedoc/shared/state/onboardingProgressSlice/variables/recordMultiChoice.md new file mode 100644 index 00000000..b376cc29 --- /dev/null +++ b/frontend/.typedoc/shared/state/onboardingProgressSlice/variables/recordMultiChoice.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/onboardingProgressSlice](../README.md) / recordMultiChoice + +# Variable: recordMultiChoice + +> **recordMultiChoice**: `ActionCreatorWithPayload`\<\{ `answerId`: `string`; `opId`: `string`; `stepId`: `string`; \}, `"onboardingProgress/recordMultiChoice"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/onboardingProgressSlice.ts:195](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/onboardingProgressSlice.ts#L195) diff --git a/frontend/.typedoc/shared/state/onboardingProgressSlice/variables/resetTour.md b/frontend/.typedoc/shared/state/onboardingProgressSlice/variables/resetTour.md new file mode 100644 index 00000000..674188c7 --- /dev/null +++ b/frontend/.typedoc/shared/state/onboardingProgressSlice/variables/resetTour.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/onboardingProgressSlice](../README.md) / resetTour + +# Variable: resetTour + +> **resetTour**: `ActionCreatorWithoutPayload`\<`"onboardingProgress/resetTour"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/onboardingProgressSlice.ts:196](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/onboardingProgressSlice.ts#L196) diff --git a/frontend/.typedoc/shared/state/onboardingProgressSlice/variables/setCurrentStep.md b/frontend/.typedoc/shared/state/onboardingProgressSlice/variables/setCurrentStep.md new file mode 100644 index 00000000..336bec76 --- /dev/null +++ b/frontend/.typedoc/shared/state/onboardingProgressSlice/variables/setCurrentStep.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/onboardingProgressSlice](../README.md) / setCurrentStep + +# Variable: setCurrentStep + +> **setCurrentStep**: `ActionCreatorWithPayload`\<`string` \| `null`, `"onboardingProgress/setCurrentStep"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/onboardingProgressSlice.ts:190](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/onboardingProgressSlice.ts#L190) diff --git a/frontend/.typedoc/shared/state/onboardingProgressSlice/variables/setPanelMode.md b/frontend/.typedoc/shared/state/onboardingProgressSlice/variables/setPanelMode.md new file mode 100644 index 00000000..de522192 --- /dev/null +++ b/frontend/.typedoc/shared/state/onboardingProgressSlice/variables/setPanelMode.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/onboardingProgressSlice](../README.md) / setPanelMode + +# Variable: setPanelMode + +> **setPanelMode**: `ActionCreatorWithPayload`\<[`PanelMode`](../type-aliases/PanelMode.md), `"onboardingProgress/setPanelMode"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/onboardingProgressSlice.ts:189](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/onboardingProgressSlice.ts#L189) diff --git a/frontend/.typedoc/shared/state/onboardingProgressSlice/variables/setRunning.md b/frontend/.typedoc/shared/state/onboardingProgressSlice/variables/setRunning.md new file mode 100644 index 00000000..30e57908 --- /dev/null +++ b/frontend/.typedoc/shared/state/onboardingProgressSlice/variables/setRunning.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/onboardingProgressSlice](../README.md) / setRunning + +# Variable: setRunning + +> **setRunning**: `ActionCreatorWithPayload`\<`boolean`, `"onboardingProgress/setRunning"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/onboardingProgressSlice.ts:194](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/onboardingProgressSlice.ts#L194) diff --git a/frontend/.typedoc/shared/state/onboardingProgressSlice/variables/unmarkStepCompleted.md b/frontend/.typedoc/shared/state/onboardingProgressSlice/variables/unmarkStepCompleted.md new file mode 100644 index 00000000..d5ef7b34 --- /dev/null +++ b/frontend/.typedoc/shared/state/onboardingProgressSlice/variables/unmarkStepCompleted.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/onboardingProgressSlice](../README.md) / unmarkStepCompleted + +# Variable: unmarkStepCompleted + +> **unmarkStepCompleted**: `ActionCreatorWithPayload`\<`string`, `"onboardingProgress/unmarkStepCompleted"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/onboardingProgressSlice.ts:193](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/onboardingProgressSlice.ts#L193) diff --git a/frontend/.typedoc/shared/state/outputsSlice/README.md b/frontend/.typedoc/shared/state/outputsSlice/README.md new file mode 100644 index 00000000..84b2d3db --- /dev/null +++ b/frontend/.typedoc/shared/state/outputsSlice/README.md @@ -0,0 +1,29 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / shared/state/outputsSlice + +# shared/state/outputsSlice + +## Interfaces + +- [Output](interfaces/Output.md) +- [OutputExecuteResult](interfaces/OutputExecuteResult.md) + +## Variables + +- [createOutput](variables/createOutput.md) +- [default](variables/default.md) +- [deleteOutput](variables/deleteOutput.md) +- [executeOutput](variables/executeOutput.md) +- [fetchOutputs](variables/fetchOutputs.md) +- [SERVE\_BASE](variables/SERVE_BASE.md) +- [updateOutput](variables/updateOutput.md) +- [upsertOutput](variables/upsertOutput.md) + +## Functions + +- [buildServeUrl](functions/buildServeUrl.md) +- [getBackendCode](functions/getBackendCode.md) +- [getFrontendCode](functions/getFrontendCode.md) diff --git a/frontend/.typedoc/shared/state/outputsSlice/functions/buildServeUrl.md b/frontend/.typedoc/shared/state/outputsSlice/functions/buildServeUrl.md new file mode 100644 index 00000000..be57e2dc --- /dev/null +++ b/frontend/.typedoc/shared/state/outputsSlice/functions/buildServeUrl.md @@ -0,0 +1,29 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/outputsSlice](../README.md) / buildServeUrl + +# Function: buildServeUrl() + +> **buildServeUrl**(`outputId`, `inputData?`, `backendResult?`): `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/outputsSlice.ts:34](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/outputsSlice.ts#L34) + +## Parameters + +### outputId + +`string` + +### inputData? + +`Record`\<`string`, `any`\> = `{}` + +### backendResult? + +`Record`\<`string`, `any`\> \| `null` + +## Returns + +`string` diff --git a/frontend/.typedoc/shared/state/outputsSlice/functions/getBackendCode.md b/frontend/.typedoc/shared/state/outputsSlice/functions/getBackendCode.md new file mode 100644 index 00000000..86c6a45a --- /dev/null +++ b/frontend/.typedoc/shared/state/outputsSlice/functions/getBackendCode.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/outputsSlice](../README.md) / getBackendCode + +# Function: getBackendCode() + +> **getBackendCode**(`output`): `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/outputsSlice.ts:30](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/outputsSlice.ts#L30) + +## Parameters + +### output + +[`Output`](../interfaces/Output.md) + +## Returns + +`string` \| `null` diff --git a/frontend/.typedoc/shared/state/outputsSlice/functions/getFrontendCode.md b/frontend/.typedoc/shared/state/outputsSlice/functions/getFrontendCode.md new file mode 100644 index 00000000..3e819c26 --- /dev/null +++ b/frontend/.typedoc/shared/state/outputsSlice/functions/getFrontendCode.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/outputsSlice](../README.md) / getFrontendCode + +# Function: getFrontendCode() + +> **getFrontendCode**(`output`): `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/outputsSlice.ts:26](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/outputsSlice.ts#L26) + +## Parameters + +### output + +[`Output`](../interfaces/Output.md) + +## Returns + +`string` diff --git a/frontend/.typedoc/shared/state/outputsSlice/interfaces/Output.md b/frontend/.typedoc/shared/state/outputsSlice/interfaces/Output.md new file mode 100644 index 00000000..2592a6ac --- /dev/null +++ b/frontend/.typedoc/shared/state/outputsSlice/interfaces/Output.md @@ -0,0 +1,109 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/outputsSlice](../README.md) / Output + +# Interface: Output + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/outputsSlice.ts:9](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/outputsSlice.ts#L9) + +## Properties + +### created\_at + +> **created\_at**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/outputsSlice.ts:22](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/outputsSlice.ts#L22) + +*** + +### description + +> **description**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/outputsSlice.ts:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/outputsSlice.ts#L12) + +*** + +### files + +> **files**: `Record`\<`string`, `string`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/outputsSlice.ts:15](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/outputsSlice.ts#L15) + +*** + +### icon + +> **icon**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/outputsSlice.ts:13](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/outputsSlice.ts#L13) + +*** + +### id + +> **id**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/outputsSlice.ts:10](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/outputsSlice.ts#L10) + +*** + +### input\_schema + +> **input\_schema**: `Record`\<`string`, `any`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/outputsSlice.ts:14](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/outputsSlice.ts#L14) + +*** + +### name + +> **name**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/outputsSlice.ts:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/outputsSlice.ts#L11) + +*** + +### preview\_updated\_at? + +> `optional` **preview\_updated\_at?**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/outputsSlice.ts:18](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/outputsSlice.ts#L18) + +Bumped only on a real screenshot save; sidebar/grids sort by this so opening an app doesn't reorder it. + +*** + +### session\_id? + +> `optional` **session\_id?**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/outputsSlice.ts:20](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/outputsSlice.ts#L20) + +Linkage so reopening App Builder reattaches to the in-progress session and workspace. + +*** + +### thumbnail? + +> `optional` **thumbnail?**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/outputsSlice.ts:16](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/outputsSlice.ts#L16) + +*** + +### updated\_at + +> **updated\_at**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/outputsSlice.ts:23](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/outputsSlice.ts#L23) + +*** + +### workspace\_id? + +> `optional` **workspace\_id?**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/outputsSlice.ts:21](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/outputsSlice.ts#L21) diff --git a/frontend/.typedoc/shared/state/outputsSlice/interfaces/OutputExecuteResult.md b/frontend/.typedoc/shared/state/outputsSlice/interfaces/OutputExecuteResult.md new file mode 100644 index 00000000..0db8d0fc --- /dev/null +++ b/frontend/.typedoc/shared/state/outputsSlice/interfaces/OutputExecuteResult.md @@ -0,0 +1,91 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/outputsSlice](../README.md) / OutputExecuteResult + +# Interface: OutputExecuteResult + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/outputsSlice.ts:44](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/outputsSlice.ts#L44) + +## Properties + +### backend\_result + +> **backend\_result**: `Record`\<`string`, `any`\> \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/outputsSlice.ts:49](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/outputsSlice.ts#L49) + +*** + +### code\_preview? + +> `optional` **code\_preview?**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/outputsSlice.ts:55](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/outputsSlice.ts#L55) + +*** + +### error + +> **error**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/outputsSlice.ts:52](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/outputsSlice.ts#L52) + +*** + +### frontend\_code + +> **frontend\_code**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/outputsSlice.ts:47](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/outputsSlice.ts#L47) + +*** + +### input\_data + +> **input\_data**: `Record`\<`string`, `any`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/outputsSlice.ts:48](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/outputsSlice.ts#L48) + +*** + +### output\_id + +> **output\_id**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/outputsSlice.ts:45](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/outputsSlice.ts#L45) + +*** + +### output\_name + +> **output\_name**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/outputsSlice.ts:46](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/outputsSlice.ts#L46) + +*** + +### stderr + +> **stderr**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/outputsSlice.ts:51](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/outputsSlice.ts#L51) + +*** + +### stdout + +> **stdout**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/outputsSlice.ts:50](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/outputsSlice.ts#L50) + +*** + +### warnings? + +> `optional` **warnings?**: `string`[] \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/outputsSlice.ts:54](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/outputsSlice.ts#L54) + +Set when AST validator flagged risky code without force=true; resubmit with force to bypass. diff --git a/frontend/.typedoc/shared/state/outputsSlice/variables/SERVE_BASE.md b/frontend/.typedoc/shared/state/outputsSlice/variables/SERVE_BASE.md new file mode 100644 index 00000000..518a62ce --- /dev/null +++ b/frontend/.typedoc/shared/state/outputsSlice/variables/SERVE_BASE.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/outputsSlice](../README.md) / SERVE\_BASE + +# Variable: SERVE\_BASE + +> `const` **SERVE\_BASE**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/outputsSlice.ts:6](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/outputsSlice.ts#L6) diff --git a/frontend/.typedoc/shared/state/outputsSlice/variables/createOutput.md b/frontend/.typedoc/shared/state/outputsSlice/variables/createOutput.md new file mode 100644 index 00000000..4fbbd2e1 --- /dev/null +++ b/frontend/.typedoc/shared/state/outputsSlice/variables/createOutput.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/outputsSlice](../README.md) / createOutput + +# Variable: createOutput + +> `const` **createOutput**: `AsyncThunk`\<[`Output`](../interfaces/Output.md), `Omit`\<[`Output`](../interfaces/Output.md), `"id"` \| `"created_at"` \| `"updated_at"`\>, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/outputsSlice.ts:76](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/outputsSlice.ts#L76) diff --git a/frontend/.typedoc/shared/state/outputsSlice/variables/default.md b/frontend/.typedoc/shared/state/outputsSlice/variables/default.md new file mode 100644 index 00000000..23052516 --- /dev/null +++ b/frontend/.typedoc/shared/state/outputsSlice/variables/default.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/outputsSlice](../README.md) / default + +# Variable: default + +> **default**: `Reducer`\<`OutputsState`\> + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@reduxjs/toolkit/dist/index.d.mts:1546 + +The slice's reducer. diff --git a/frontend/.typedoc/shared/state/outputsSlice/variables/deleteOutput.md b/frontend/.typedoc/shared/state/outputsSlice/variables/deleteOutput.md new file mode 100644 index 00000000..752ff920 --- /dev/null +++ b/frontend/.typedoc/shared/state/outputsSlice/variables/deleteOutput.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/outputsSlice](../README.md) / deleteOutput + +# Variable: deleteOutput + +> `const` **deleteOutput**: `AsyncThunk`\<`string`, `string`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/outputsSlice.ts:104](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/outputsSlice.ts#L104) diff --git a/frontend/.typedoc/shared/state/outputsSlice/variables/executeOutput.md b/frontend/.typedoc/shared/state/outputsSlice/variables/executeOutput.md new file mode 100644 index 00000000..412b62ff --- /dev/null +++ b/frontend/.typedoc/shared/state/outputsSlice/variables/executeOutput.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/outputsSlice](../README.md) / executeOutput + +# Variable: executeOutput + +> `const` **executeOutput**: `AsyncThunk`\<[`OutputExecuteResult`](../interfaces/OutputExecuteResult.md), \{ `force?`: `boolean`; `input_data`: `Record`\<`string`, `any`\>; `output_id`: `string`; \}, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/outputsSlice.ts:109](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/outputsSlice.ts#L109) diff --git a/frontend/.typedoc/shared/state/outputsSlice/variables/fetchOutputs.md b/frontend/.typedoc/shared/state/outputsSlice/variables/fetchOutputs.md new file mode 100644 index 00000000..f028bf3f --- /dev/null +++ b/frontend/.typedoc/shared/state/outputsSlice/variables/fetchOutputs.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/outputsSlice](../README.md) / fetchOutputs + +# Variable: fetchOutputs + +> `const` **fetchOutputs**: `AsyncThunk`\<[`Output`](../interfaces/Output.md)[], `void`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/outputsSlice.ts:66](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/outputsSlice.ts#L66) diff --git a/frontend/.typedoc/shared/state/outputsSlice/variables/updateOutput.md b/frontend/.typedoc/shared/state/outputsSlice/variables/updateOutput.md new file mode 100644 index 00000000..51d7b529 --- /dev/null +++ b/frontend/.typedoc/shared/state/outputsSlice/variables/updateOutput.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/outputsSlice](../README.md) / updateOutput + +# Variable: updateOutput + +> `const` **updateOutput**: `AsyncThunk`\<[`Output`](../interfaces/Output.md), `Partial`\<[`Output`](../interfaces/Output.md)\> & `object`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/outputsSlice.ts:90](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/outputsSlice.ts#L90) diff --git a/frontend/.typedoc/shared/state/outputsSlice/variables/upsertOutput.md b/frontend/.typedoc/shared/state/outputsSlice/variables/upsertOutput.md new file mode 100644 index 00000000..2fc3d42e --- /dev/null +++ b/frontend/.typedoc/shared/state/outputsSlice/variables/upsertOutput.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/outputsSlice](../README.md) / upsertOutput + +# Variable: upsertOutput + +> **upsertOutput**: `ActionCreatorWithPayload`\<[`Output`](../interfaces/Output.md), `"outputs/upsertOutput"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/outputsSlice.ts:153](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/outputsSlice.ts#L153) diff --git a/frontend/.typedoc/shared/state/settingsSlice/README.md b/frontend/.typedoc/shared/state/settingsSlice/README.md new file mode 100644 index 00000000..884a5807 --- /dev/null +++ b/frontend/.typedoc/shared/state/settingsSlice/README.md @@ -0,0 +1,33 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / shared/state/settingsSlice + +# shared/state/settingsSlice + +## Interfaces + +- [ActivateSigninPayload](interfaces/ActivateSigninPayload.md) +- [ActivateSubscriptionPayload](interfaces/ActivateSubscriptionPayload.md) +- [AppSettings](interfaces/AppSettings.md) +- [BrowseResult](interfaces/BrowseResult.md) +- [CustomProvider](interfaces/CustomProvider.md) +- [SubscriptionUsage](interfaces/SubscriptionUsage.md) + +## Variables + +- [activateSignin](variables/activateSignin.md) +- [activateSubscription](variables/activateSubscription.md) +- [browseDirectories](variables/browseDirectories.md) +- [clearDraft](variables/clearDraft.md) +- [closeSettingsModal](variables/closeSettingsModal.md) +- [default](variables/default.md) +- [DEFAULT\_SYSTEM\_PROMPT](variables/DEFAULT_SYSTEM_PROMPT.md) +- [disconnectSubscription](variables/disconnectSubscription.md) +- [fetchSettings](variables/fetchSettings.md) +- [openSettingsModal](variables/openSettingsModal.md) +- [resetSystemPrompt](variables/resetSystemPrompt.md) +- [setDraft](variables/setDraft.md) +- [signOut](variables/signOut.md) +- [updateSettings](variables/updateSettings.md) diff --git a/frontend/.typedoc/shared/state/settingsSlice/interfaces/ActivateSigninPayload.md b/frontend/.typedoc/shared/state/settingsSlice/interfaces/ActivateSigninPayload.md new file mode 100644 index 00000000..2b37ca21 --- /dev/null +++ b/frontend/.typedoc/shared/state/settingsSlice/interfaces/ActivateSigninPayload.md @@ -0,0 +1,33 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/settingsSlice](../README.md) / ActivateSigninPayload + +# Interface: ActivateSigninPayload + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:84](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L84) + +## Properties + +### email? + +> `optional` **email?**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:87](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L87) + +*** + +### signin\_method + +> **signin\_method**: `"google"` \| `"email"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:86](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L86) + +*** + +### token + +> **token**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:85](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L85) diff --git a/frontend/.typedoc/shared/state/settingsSlice/interfaces/ActivateSubscriptionPayload.md b/frontend/.typedoc/shared/state/settingsSlice/interfaces/ActivateSubscriptionPayload.md new file mode 100644 index 00000000..1a47723f --- /dev/null +++ b/frontend/.typedoc/shared/state/settingsSlice/interfaces/ActivateSubscriptionPayload.md @@ -0,0 +1,33 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/settingsSlice](../README.md) / ActivateSubscriptionPayload + +# Interface: ActivateSubscriptionPayload + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:78](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L78) + +## Properties + +### expires? + +> `optional` **expires?**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:81](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L81) + +*** + +### plan? + +> `optional` **plan?**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:80](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L80) + +*** + +### token + +> **token**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:79](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L79) diff --git a/frontend/.typedoc/shared/state/settingsSlice/interfaces/AppSettings.md b/frontend/.typedoc/shared/state/settingsSlice/interfaces/AppSettings.md new file mode 100644 index 00000000..f0e12595 --- /dev/null +++ b/frontend/.typedoc/shared/state/settingsSlice/interfaces/AppSettings.md @@ -0,0 +1,281 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/settingsSlice](../README.md) / AppSettings + +# Interface: AppSettings + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:38](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L38) + +## Properties + +### allow\_experimental\_updates + +> **allow\_experimental\_updates**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:58](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L58) + +*** + +### anthropic\_api\_key + +> **anthropic\_api\_key**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:48](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L48) + +*** + +### auto\_reveal\_sub\_agents + +> **auto\_reveal\_sub\_agents**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:56](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L56) + +*** + +### auto\_select\_mode\_on\_new\_agent + +> **auto\_select\_mode\_on\_new\_agent**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:54](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L54) + +*** + +### browser\_homepage + +> **browser\_homepage**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:53](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L53) + +*** + +### connection\_mode? + +> `optional` **connection\_mode?**: `"own_key"` \| `"openswarm-pro"` \| `"free-trial"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:60](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L60) + +Managed subscription state; surfaces only when user has subscribed via cloud. + +*** + +### custom\_providers? + +> `optional` **custom\_providers?**: [`CustomProvider`](CustomProvider.md)[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:52](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L52) + +*** + +### default\_folder + +> **default\_folder**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:40](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L40) + +*** + +### default\_max\_turns + +> **default\_max\_turns**: `number` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:43](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L43) + +*** + +### default\_mode + +> **default\_mode**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:42](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L42) + +*** + +### default\_model + +> **default\_model**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:41](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L41) + +*** + +### default\_system\_prompt + +> **default\_system\_prompt**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:39](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L39) + +*** + +### default\_thinking\_level + +> **default\_thinking\_level**: `"off"` \| `"low"` \| `"medium"` \| `"high"` \| `"auto"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:44](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L44) + +*** + +### dev\_mode + +> **dev\_mode**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:57](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L57) + +*** + +### expand\_new\_chats\_in\_dashboard + +> **expand\_new\_chats\_in\_dashboard**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:55](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L55) + +*** + +### free\_trial\_remaining? + +> `optional` **free\_trial\_remaining?**: `number` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:65](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L65) + +*** + +### free\_trial\_runs\_limit? + +> `optional` **free\_trial\_runs\_limit?**: `number` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:66](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L66) + +*** + +### free\_trial\_token? + +> `optional` **free\_trial\_token?**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:64](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L64) + +Zero-config free trial: server-owned, set by the cloud mint. remaining drives the onboarding "runs low" nudge. + +*** + +### google\_api\_key? + +> `optional` **google\_api\_key?**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:50](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L50) + +*** + +### installation\_id? + +> `optional` **installation\_id?**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:75](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L75) + +Anonymous device id (first-run generated); stitches anon to authed PostHog Persons. + +*** + +### new\_agent\_shortcut + +> **new\_agent\_shortcut**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:47](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L47) + +*** + +### openai\_api\_key? + +> `optional` **openai\_api\_key?**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:49](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L49) + +*** + +### openrouter\_api\_key? + +> `optional` **openrouter\_api\_key?**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:51](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L51) + +*** + +### openswarm\_bearer\_token? + +> `optional` **openswarm\_bearer\_token?**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:61](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L61) + +*** + +### openswarm\_proxy\_url? + +> `optional` **openswarm\_proxy\_url?**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:62](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L62) + +*** + +### openswarm\_subscription\_expires? + +> `optional` **openswarm\_subscription\_expires?**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:68](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L68) + +*** + +### openswarm\_subscription\_plan? + +> `optional` **openswarm\_subscription\_plan?**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:67](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L67) + +*** + +### openswarm\_usage\_cached? + +> `optional` **openswarm\_usage\_cached?**: [`SubscriptionUsage`](SubscriptionUsage.md) \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:69](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L69) + +*** + +### signin\_method? + +> `optional` **signin\_method?**: `"google"` \| `"email"` \| `"stripe"` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:73](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L73) + +*** + +### theme + +> **theme**: `"light"` \| `"dark"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:46](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L46) + +*** + +### user\_email? + +> `optional` **user\_email?**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:72](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L72) + +*** + +### user\_id? + +> `optional` **user\_id?**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:71](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L71) + +Identity populated by /api/auth/signin-activate; Stripe checkout also fills these. + +*** + +### zoom\_sensitivity + +> **zoom\_sensitivity**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:45](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L45) diff --git a/frontend/.typedoc/shared/state/settingsSlice/interfaces/BrowseResult.md b/frontend/.typedoc/shared/state/settingsSlice/interfaces/BrowseResult.md new file mode 100644 index 00000000..9cb2ab38 --- /dev/null +++ b/frontend/.typedoc/shared/state/settingsSlice/interfaces/BrowseResult.md @@ -0,0 +1,41 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/settingsSlice](../README.md) / BrowseResult + +# Interface: BrowseResult + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:90](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L90) + +## Properties + +### current + +> **current**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:91](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L91) + +*** + +### directories + +> **directories**: `string`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:93](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L93) + +*** + +### files + +> **files**: `string`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:94](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L94) + +*** + +### parent + +> **parent**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:92](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L92) diff --git a/frontend/.typedoc/shared/state/settingsSlice/interfaces/CustomProvider.md b/frontend/.typedoc/shared/state/settingsSlice/interfaces/CustomProvider.md new file mode 100644 index 00000000..6eaae0f0 --- /dev/null +++ b/frontend/.typedoc/shared/state/settingsSlice/interfaces/CustomProvider.md @@ -0,0 +1,53 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/settingsSlice](../README.md) / CustomProvider + +# Interface: CustomProvider + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:23](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L23) + +## Properties + +### api\_key + +> **api\_key**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:26](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L26) + +*** + +### base\_url + +> **base\_url**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:25](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L25) + +*** + +### models + +> **models**: `object`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:27](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L27) + +#### context\_window? + +> `optional` **context\_window?**: `number` + +#### label + +> **label**: `string` + +#### value + +> **value**: `string` + +*** + +### name + +> **name**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:24](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L24) diff --git a/frontend/.typedoc/shared/state/settingsSlice/interfaces/SubscriptionUsage.md b/frontend/.typedoc/shared/state/settingsSlice/interfaces/SubscriptionUsage.md new file mode 100644 index 00000000..6b7662cb --- /dev/null +++ b/frontend/.typedoc/shared/state/settingsSlice/interfaces/SubscriptionUsage.md @@ -0,0 +1,43 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/settingsSlice](../README.md) / SubscriptionUsage + +# Interface: SubscriptionUsage + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:30](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L30) + +## Properties + +### plan\_limit + +> **plan\_limit**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:32](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L32) + +*** + +### requests\_in\_window + +> **requests\_in\_window**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:31](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L31) + +*** + +### window\_ends\_at + +> **window\_ends\_at**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:35](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L35) + +unix ms + +*** + +### window\_hours + +> **window\_hours**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:33](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L33) diff --git a/frontend/.typedoc/shared/state/settingsSlice/variables/DEFAULT_SYSTEM_PROMPT.md b/frontend/.typedoc/shared/state/settingsSlice/variables/DEFAULT_SYSTEM_PROMPT.md new file mode 100644 index 00000000..2505111a --- /dev/null +++ b/frontend/.typedoc/shared/state/settingsSlice/variables/DEFAULT_SYSTEM_PROMPT.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/settingsSlice](../README.md) / DEFAULT\_SYSTEM\_PROMPT + +# Variable: DEFAULT\_SYSTEM\_PROMPT + +> `const` **DEFAULT\_SYSTEM\_PROMPT**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:6](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L6) diff --git a/frontend/.typedoc/shared/state/settingsSlice/variables/activateSignin.md b/frontend/.typedoc/shared/state/settingsSlice/variables/activateSignin.md new file mode 100644 index 00000000..feaef576 --- /dev/null +++ b/frontend/.typedoc/shared/state/settingsSlice/variables/activateSignin.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/settingsSlice](../README.md) / activateSignin + +# Variable: activateSignin + +> `const` **activateSignin**: `AsyncThunk`\<\{ `email`: `string`; `ok`: `boolean`; `plan`: `string`; `signin_method`: `"google"` \| `"email"`; `user_id`: `string`; \}, [`ActivateSigninPayload`](../interfaces/ActivateSigninPayload.md), `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:189](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L189) + +POST /api/auth/signin-activate after catching Google OAuth/magic-link bearer; persists identity. diff --git a/frontend/.typedoc/shared/state/settingsSlice/variables/activateSubscription.md b/frontend/.typedoc/shared/state/settingsSlice/variables/activateSubscription.md new file mode 100644 index 00000000..f96198da --- /dev/null +++ b/frontend/.typedoc/shared/state/settingsSlice/variables/activateSubscription.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/settingsSlice](../README.md) / activateSubscription + +# Variable: activateSubscription + +> `const` **activateSubscription**: `AsyncThunk`\<\{ `ok`: `boolean`; `plan`: `string`; \}, [`ActivateSubscriptionPayload`](../interfaces/ActivateSubscriptionPayload.md), `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:174](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L174) + +POST /api/subscription/activate after catching openswarm://auth deep link; flips UI to Pro. diff --git a/frontend/.typedoc/shared/state/settingsSlice/variables/browseDirectories.md b/frontend/.typedoc/shared/state/settingsSlice/variables/browseDirectories.md new file mode 100644 index 00000000..2dd76140 --- /dev/null +++ b/frontend/.typedoc/shared/state/settingsSlice/variables/browseDirectories.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/settingsSlice](../README.md) / browseDirectories + +# Variable: browseDirectories + +> `const` **browseDirectories**: `AsyncThunk`\<[`BrowseResult`](../interfaces/BrowseResult.md), `string`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:164](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L164) diff --git a/frontend/.typedoc/shared/state/settingsSlice/variables/clearDraft.md b/frontend/.typedoc/shared/state/settingsSlice/variables/clearDraft.md new file mode 100644 index 00000000..1fab8d3b --- /dev/null +++ b/frontend/.typedoc/shared/state/settingsSlice/variables/clearDraft.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/settingsSlice](../README.md) / clearDraft + +# Variable: clearDraft + +> **clearDraft**: `ActionCreatorWithoutPayload`\<`"settings/clearDraft"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:286](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L286) diff --git a/frontend/.typedoc/shared/state/settingsSlice/variables/closeSettingsModal.md b/frontend/.typedoc/shared/state/settingsSlice/variables/closeSettingsModal.md new file mode 100644 index 00000000..aef70637 --- /dev/null +++ b/frontend/.typedoc/shared/state/settingsSlice/variables/closeSettingsModal.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/settingsSlice](../README.md) / closeSettingsModal + +# Variable: closeSettingsModal + +> **closeSettingsModal**: `ActionCreatorWithoutPayload`\<`"settings/closeSettingsModal"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:286](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L286) diff --git a/frontend/.typedoc/shared/state/settingsSlice/variables/default.md b/frontend/.typedoc/shared/state/settingsSlice/variables/default.md new file mode 100644 index 00000000..a012bd58 --- /dev/null +++ b/frontend/.typedoc/shared/state/settingsSlice/variables/default.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/settingsSlice](../README.md) / default + +# Variable: default + +> **default**: `Reducer`\<`SettingsState`\> + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@reduxjs/toolkit/dist/index.d.mts:1546 + +The slice's reducer. diff --git a/frontend/.typedoc/shared/state/settingsSlice/variables/disconnectSubscription.md b/frontend/.typedoc/shared/state/settingsSlice/variables/disconnectSubscription.md new file mode 100644 index 00000000..2ac45cd0 --- /dev/null +++ b/frontend/.typedoc/shared/state/settingsSlice/variables/disconnectSubscription.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/settingsSlice](../README.md) / disconnectSubscription + +# Variable: disconnectSubscription + +> `const` **disconnectSubscription**: `AsyncThunk`\<`boolean`, `void`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:221](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L221) + +POST /api/subscription/disconnect; clears bearer, reverts to own_key. Doesn't cancel Stripe. diff --git a/frontend/.typedoc/shared/state/settingsSlice/variables/fetchSettings.md b/frontend/.typedoc/shared/state/settingsSlice/variables/fetchSettings.md new file mode 100644 index 00000000..804ee901 --- /dev/null +++ b/frontend/.typedoc/shared/state/settingsSlice/variables/fetchSettings.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/settingsSlice](../README.md) / fetchSettings + +# Variable: fetchSettings + +> `const` **fetchSettings**: `AsyncThunk`\<[`AppSettings`](../interfaces/AppSettings.md), `void`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:137](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L137) diff --git a/frontend/.typedoc/shared/state/settingsSlice/variables/openSettingsModal.md b/frontend/.typedoc/shared/state/settingsSlice/variables/openSettingsModal.md new file mode 100644 index 00000000..d056062e --- /dev/null +++ b/frontend/.typedoc/shared/state/settingsSlice/variables/openSettingsModal.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/settingsSlice](../README.md) / openSettingsModal + +# Variable: openSettingsModal + +> **openSettingsModal**: `ActionCreatorWithOptionalPayload`\<`string` \| `undefined`, `"settings/openSettingsModal"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:286](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L286) diff --git a/frontend/.typedoc/shared/state/settingsSlice/variables/resetSystemPrompt.md b/frontend/.typedoc/shared/state/settingsSlice/variables/resetSystemPrompt.md new file mode 100644 index 00000000..9bbed528 --- /dev/null +++ b/frontend/.typedoc/shared/state/settingsSlice/variables/resetSystemPrompt.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/settingsSlice](../README.md) / resetSystemPrompt + +# Variable: resetSystemPrompt + +> `const` **resetSystemPrompt**: `AsyncThunk`\<[`AppSettings`](../interfaces/AppSettings.md), `void`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:155](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L155) diff --git a/frontend/.typedoc/shared/state/settingsSlice/variables/setDraft.md b/frontend/.typedoc/shared/state/settingsSlice/variables/setDraft.md new file mode 100644 index 00000000..6b01286f --- /dev/null +++ b/frontend/.typedoc/shared/state/settingsSlice/variables/setDraft.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/settingsSlice](../README.md) / setDraft + +# Variable: setDraft + +> **setDraft**: `ActionCreatorWithPayload`\<\{ `form`: [`AppSettings`](../interfaces/AppSettings.md); `tab`: `string`; \}, `"settings/setDraft"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:286](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L286) diff --git a/frontend/.typedoc/shared/state/settingsSlice/variables/signOut.md b/frontend/.typedoc/shared/state/settingsSlice/variables/signOut.md new file mode 100644 index 00000000..97672ae1 --- /dev/null +++ b/frontend/.typedoc/shared/state/settingsSlice/variables/signOut.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/settingsSlice](../README.md) / signOut + +# Variable: signOut + +> `const` **signOut**: `AsyncThunk`\<`boolean`, `void`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:210](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L210) + +POST /api/auth/signout; revokes cloud bearer, clears local identity. diff --git a/frontend/.typedoc/shared/state/settingsSlice/variables/updateSettings.md b/frontend/.typedoc/shared/state/settingsSlice/variables/updateSettings.md new file mode 100644 index 00000000..dd6f8663 --- /dev/null +++ b/frontend/.typedoc/shared/state/settingsSlice/variables/updateSettings.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/settingsSlice](../README.md) / updateSettings + +# Variable: updateSettings + +> `const` **updateSettings**: `AsyncThunk`\<[`AppSettings`](../interfaces/AppSettings.md), [`AppSettings`](../interfaces/AppSettings.md), `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/settingsSlice.ts:142](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/settingsSlice.ts#L142) diff --git a/frontend/.typedoc/shared/state/skillRegistrySlice/README.md b/frontend/.typedoc/shared/state/skillRegistrySlice/README.md new file mode 100644 index 00000000..315917b6 --- /dev/null +++ b/frontend/.typedoc/shared/state/skillRegistrySlice/README.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / shared/state/skillRegistrySlice + +# shared/state/skillRegistrySlice + +## Interfaces + +- [RegistrySkill](interfaces/RegistrySkill.md) +- [RegistrySkillDetail](interfaces/RegistrySkillDetail.md) + +## Variables + +- [clearSkillDetail](variables/clearSkillDetail.md) +- [default](variables/default.md) +- [fetchAllRegistrySkills](variables/fetchAllRegistrySkills.md) +- [fetchSkillDetail](variables/fetchSkillDetail.md) +- [fetchSkillRegistryStats](variables/fetchSkillRegistryStats.md) +- [searchSkillRegistry](variables/searchSkillRegistry.md) diff --git a/frontend/.typedoc/shared/state/skillRegistrySlice/interfaces/RegistrySkill.md b/frontend/.typedoc/shared/state/skillRegistrySlice/interfaces/RegistrySkill.md new file mode 100644 index 00000000..1e9139f6 --- /dev/null +++ b/frontend/.typedoc/shared/state/skillRegistrySlice/interfaces/RegistrySkill.md @@ -0,0 +1,53 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/skillRegistrySlice](../README.md) / RegistrySkill + +# Interface: RegistrySkill + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/skillRegistrySlice.ts:6](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/skillRegistrySlice.ts#L6) + +## Extended by + +- [`RegistrySkillDetail`](RegistrySkillDetail.md) + +## Properties + +### category + +> **category**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/skillRegistrySlice.ts:10](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/skillRegistrySlice.ts#L10) + +*** + +### description + +> **description**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/skillRegistrySlice.ts:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/skillRegistrySlice.ts#L8) + +*** + +### folder + +> **folder**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/skillRegistrySlice.ts:9](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/skillRegistrySlice.ts#L9) + +*** + +### name + +> **name**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/skillRegistrySlice.ts:7](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/skillRegistrySlice.ts#L7) + +*** + +### repositoryUrl + +> **repositoryUrl**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/skillRegistrySlice.ts:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/skillRegistrySlice.ts#L11) diff --git a/frontend/.typedoc/shared/state/skillRegistrySlice/interfaces/RegistrySkillDetail.md b/frontend/.typedoc/shared/state/skillRegistrySlice/interfaces/RegistrySkillDetail.md new file mode 100644 index 00000000..abe173f3 --- /dev/null +++ b/frontend/.typedoc/shared/state/skillRegistrySlice/interfaces/RegistrySkillDetail.md @@ -0,0 +1,81 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/skillRegistrySlice](../README.md) / RegistrySkillDetail + +# Interface: RegistrySkillDetail + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/skillRegistrySlice.ts:14](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/skillRegistrySlice.ts#L14) + +## Extends + +- [`RegistrySkill`](RegistrySkill.md) + +## Properties + +### category + +> **category**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/skillRegistrySlice.ts:10](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/skillRegistrySlice.ts#L10) + +#### Inherited from + +[`RegistrySkill`](RegistrySkill.md).[`category`](RegistrySkill.md#category) + +*** + +### content + +> **content**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/skillRegistrySlice.ts:15](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/skillRegistrySlice.ts#L15) + +*** + +### description + +> **description**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/skillRegistrySlice.ts:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/skillRegistrySlice.ts#L8) + +#### Inherited from + +[`RegistrySkill`](RegistrySkill.md).[`description`](RegistrySkill.md#description) + +*** + +### folder + +> **folder**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/skillRegistrySlice.ts:9](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/skillRegistrySlice.ts#L9) + +#### Inherited from + +[`RegistrySkill`](RegistrySkill.md).[`folder`](RegistrySkill.md#folder) + +*** + +### name + +> **name**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/skillRegistrySlice.ts:7](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/skillRegistrySlice.ts#L7) + +#### Inherited from + +[`RegistrySkill`](RegistrySkill.md).[`name`](RegistrySkill.md#name) + +*** + +### repositoryUrl + +> **repositoryUrl**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/skillRegistrySlice.ts:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/skillRegistrySlice.ts#L11) + +#### Inherited from + +[`RegistrySkill`](RegistrySkill.md).[`repositoryUrl`](RegistrySkill.md#repositoryurl) diff --git a/frontend/.typedoc/shared/state/skillRegistrySlice/variables/clearSkillDetail.md b/frontend/.typedoc/shared/state/skillRegistrySlice/variables/clearSkillDetail.md new file mode 100644 index 00000000..430a007a --- /dev/null +++ b/frontend/.typedoc/shared/state/skillRegistrySlice/variables/clearSkillDetail.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/skillRegistrySlice](../README.md) / clearSkillDetail + +# Variable: clearSkillDetail + +> **clearSkillDetail**: `ActionCreatorWithoutPayload`\<`"skillRegistry/clearSkillDetail"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/skillRegistrySlice.ts:126](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/skillRegistrySlice.ts#L126) diff --git a/frontend/.typedoc/shared/state/skillRegistrySlice/variables/default.md b/frontend/.typedoc/shared/state/skillRegistrySlice/variables/default.md new file mode 100644 index 00000000..89ae878f --- /dev/null +++ b/frontend/.typedoc/shared/state/skillRegistrySlice/variables/default.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/skillRegistrySlice](../README.md) / default + +# Variable: default + +> **default**: `Reducer`\<`SkillRegistryState`\> + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@reduxjs/toolkit/dist/index.d.mts:1546 + +The slice's reducer. diff --git a/frontend/.typedoc/shared/state/skillRegistrySlice/variables/fetchAllRegistrySkills.md b/frontend/.typedoc/shared/state/skillRegistrySlice/variables/fetchAllRegistrySkills.md new file mode 100644 index 00000000..0385f4cc --- /dev/null +++ b/frontend/.typedoc/shared/state/skillRegistrySlice/variables/fetchAllRegistrySkills.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/skillRegistrySlice](../README.md) / fetchAllRegistrySkills + +# Variable: fetchAllRegistrySkills + +> `const` **fetchAllRegistrySkills**: `AsyncThunk`\<\{ `limit`: `number`; `offset`: `number`; `skills`: [`RegistrySkill`](../interfaces/RegistrySkill.md)[]; `total`: `number`; \}, `void`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/skillRegistrySlice.ts:54](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/skillRegistrySlice.ts#L54) diff --git a/frontend/.typedoc/shared/state/skillRegistrySlice/variables/fetchSkillDetail.md b/frontend/.typedoc/shared/state/skillRegistrySlice/variables/fetchSkillDetail.md new file mode 100644 index 00000000..cc7ab086 --- /dev/null +++ b/frontend/.typedoc/shared/state/skillRegistrySlice/variables/fetchSkillDetail.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/skillRegistrySlice](../README.md) / fetchSkillDetail + +# Variable: fetchSkillDetail + +> `const` **fetchSkillDetail**: `AsyncThunk`\<[`RegistrySkillDetail`](../interfaces/RegistrySkillDetail.md), `string`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/skillRegistrySlice.ts:63](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/skillRegistrySlice.ts#L63) diff --git a/frontend/.typedoc/shared/state/skillRegistrySlice/variables/fetchSkillRegistryStats.md b/frontend/.typedoc/shared/state/skillRegistrySlice/variables/fetchSkillRegistryStats.md new file mode 100644 index 00000000..9866ae6c --- /dev/null +++ b/frontend/.typedoc/shared/state/skillRegistrySlice/variables/fetchSkillRegistryStats.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/skillRegistrySlice](../README.md) / fetchSkillRegistryStats + +# Variable: fetchSkillRegistryStats + +> `const` **fetchSkillRegistryStats**: `AsyncThunk`\<\{ `categories`: `Record`\<`string`, `number`\>; `lastUpdated`: `number`; `total`: `number`; \}, `void`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/skillRegistrySlice.ts:49](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/skillRegistrySlice.ts#L49) diff --git a/frontend/.typedoc/shared/state/skillRegistrySlice/variables/searchSkillRegistry.md b/frontend/.typedoc/shared/state/skillRegistrySlice/variables/searchSkillRegistry.md new file mode 100644 index 00000000..c0cb5a7e --- /dev/null +++ b/frontend/.typedoc/shared/state/skillRegistrySlice/variables/searchSkillRegistry.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/skillRegistrySlice](../README.md) / searchSkillRegistry + +# Variable: searchSkillRegistry + +> `const` **searchSkillRegistry**: `AsyncThunk`\<\{ `limit`: `number`; `offset`: `number`; `skills`: [`RegistrySkill`](../interfaces/RegistrySkill.md)[]; `total`: `number`; \}, \{ `category?`: `string`; `limit?`: `number`; `offset?`: `number`; `q`: `string`; `sort?`: `string`; \}, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/skillRegistrySlice.ts:40](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/skillRegistrySlice.ts#L40) diff --git a/frontend/.typedoc/shared/state/skillsSlice/README.md b/frontend/.typedoc/shared/state/skillsSlice/README.md new file mode 100644 index 00000000..452b8236 --- /dev/null +++ b/frontend/.typedoc/shared/state/skillsSlice/README.md @@ -0,0 +1,19 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / shared/state/skillsSlice + +# shared/state/skillsSlice + +## Interfaces + +- [Skill](interfaces/Skill.md) + +## Variables + +- [createSkill](variables/createSkill.md) +- [default](variables/default.md) +- [deleteSkill](variables/deleteSkill.md) +- [fetchSkills](variables/fetchSkills.md) +- [updateSkill](variables/updateSkill.md) diff --git a/frontend/.typedoc/shared/state/skillsSlice/interfaces/Skill.md b/frontend/.typedoc/shared/state/skillsSlice/interfaces/Skill.md new file mode 100644 index 00000000..55b8f40e --- /dev/null +++ b/frontend/.typedoc/shared/state/skillsSlice/interfaces/Skill.md @@ -0,0 +1,67 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/skillsSlice](../README.md) / Skill + +# Interface: Skill + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/skillsSlice.ts:6](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/skillsSlice.ts#L6) + +## Properties + +### built\_in? + +> `optional` **built\_in?**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/skillsSlice.ts:14](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/skillsSlice.ts#L14) + +Platform-shipped skill; UI hides delete, backend DELETE returns 409. Content still editable. + +*** + +### command + +> **command**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/skillsSlice.ts:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/skillsSlice.ts#L12) + +*** + +### content + +> **content**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/skillsSlice.ts:10](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/skillsSlice.ts#L10) + +*** + +### description + +> **description**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/skillsSlice.ts:9](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/skillsSlice.ts#L9) + +*** + +### file\_path + +> **file\_path**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/skillsSlice.ts:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/skillsSlice.ts#L11) + +*** + +### id + +> **id**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/skillsSlice.ts:7](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/skillsSlice.ts#L7) + +*** + +### name + +> **name**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/skillsSlice.ts:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/skillsSlice.ts#L8) diff --git a/frontend/.typedoc/shared/state/skillsSlice/variables/createSkill.md b/frontend/.typedoc/shared/state/skillsSlice/variables/createSkill.md new file mode 100644 index 00000000..f77a3df5 --- /dev/null +++ b/frontend/.typedoc/shared/state/skillsSlice/variables/createSkill.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/skillsSlice](../README.md) / createSkill + +# Variable: createSkill + +> `const` **createSkill**: `AsyncThunk`\<[`Skill`](../interfaces/Skill.md), \{ `command?`: `string`; `content`: `string`; `description?`: `string`; `name`: `string`; \}, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/skillsSlice.ts:35](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/skillsSlice.ts#L35) diff --git a/frontend/.typedoc/shared/state/skillsSlice/variables/default.md b/frontend/.typedoc/shared/state/skillsSlice/variables/default.md new file mode 100644 index 00000000..bb344a52 --- /dev/null +++ b/frontend/.typedoc/shared/state/skillsSlice/variables/default.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/skillsSlice](../README.md) / default + +# Variable: default + +> **default**: `Reducer`\<`SkillsState`\> + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@reduxjs/toolkit/dist/index.d.mts:1546 + +The slice's reducer. diff --git a/frontend/.typedoc/shared/state/skillsSlice/variables/deleteSkill.md b/frontend/.typedoc/shared/state/skillsSlice/variables/deleteSkill.md new file mode 100644 index 00000000..2578353f --- /dev/null +++ b/frontend/.typedoc/shared/state/skillsSlice/variables/deleteSkill.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/skillsSlice](../README.md) / deleteSkill + +# Variable: deleteSkill + +> `const` **deleteSkill**: `AsyncThunk`\<`string`, `string`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/skillsSlice.ts:61](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/skillsSlice.ts#L61) diff --git a/frontend/.typedoc/shared/state/skillsSlice/variables/fetchSkills.md b/frontend/.typedoc/shared/state/skillsSlice/variables/fetchSkills.md new file mode 100644 index 00000000..25b89de1 --- /dev/null +++ b/frontend/.typedoc/shared/state/skillsSlice/variables/fetchSkills.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/skillsSlice](../README.md) / fetchSkills + +# Variable: fetchSkills + +> `const` **fetchSkills**: `AsyncThunk`\<[`Skill`](../interfaces/Skill.md)[], `void`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/skillsSlice.ts:25](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/skillsSlice.ts#L25) diff --git a/frontend/.typedoc/shared/state/skillsSlice/variables/updateSkill.md b/frontend/.typedoc/shared/state/skillsSlice/variables/updateSkill.md new file mode 100644 index 00000000..4ab00e69 --- /dev/null +++ b/frontend/.typedoc/shared/state/skillsSlice/variables/updateSkill.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/skillsSlice](../README.md) / updateSkill + +# Variable: updateSkill + +> `const` **updateSkill**: `AsyncThunk`\<[`Skill`](../interfaces/Skill.md), `Partial`\<[`Skill`](../interfaces/Skill.md)\> & `object`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/skillsSlice.ts:48](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/skillsSlice.ts#L48) diff --git a/frontend/.typedoc/shared/state/store/README.md b/frontend/.typedoc/shared/state/store/README.md new file mode 100644 index 00000000..04b47a27 --- /dev/null +++ b/frontend/.typedoc/shared/state/store/README.md @@ -0,0 +1,16 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / shared/state/store + +# shared/state/store + +## Type Aliases + +- [AppDispatch](type-aliases/AppDispatch.md) +- [RootState](type-aliases/RootState.md) + +## Variables + +- [store](variables/store.md) diff --git a/frontend/.typedoc/shared/state/store/type-aliases/AppDispatch.md b/frontend/.typedoc/shared/state/store/type-aliases/AppDispatch.md new file mode 100644 index 00000000..398247ee --- /dev/null +++ b/frontend/.typedoc/shared/state/store/type-aliases/AppDispatch.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/store](../README.md) / AppDispatch + +# Type Alias: AppDispatch + +> **AppDispatch** = *typeof* `store.dispatch` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/store.ts:59](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/store.ts#L59) diff --git a/frontend/.typedoc/shared/state/store/type-aliases/RootState.md b/frontend/.typedoc/shared/state/store/type-aliases/RootState.md new file mode 100644 index 00000000..d6e77a7c --- /dev/null +++ b/frontend/.typedoc/shared/state/store/type-aliases/RootState.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/store](../README.md) / RootState + +# Type Alias: RootState + +> **RootState** = `ReturnType`\<*typeof* `store.getState`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/store.ts:58](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/store.ts#L58) diff --git a/frontend/.typedoc/shared/state/store/variables/store.md b/frontend/.typedoc/shared/state/store/variables/store.md new file mode 100644 index 00000000..f0adf2cc --- /dev/null +++ b/frontend/.typedoc/shared/state/store/variables/store.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/store](../README.md) / store + +# Variable: store + +> `const` **store**: `EnhancedStore`\<\{ `agents`: `AgentsState`; `dashboardLayout`: [`DashboardLayoutState`](../../dashboardLayoutSlice/interfaces/DashboardLayoutState.md); `dashboards`: `DashboardsState`; `interaction`: `InteractionState`; `mcpRegistry`: `McpRegistryState`; `models`: `ModelsState`; `modes`: `ModesState`; `onboardingProgress`: [`OnboardingProgressState`](../../onboardingProgressSlice/interfaces/OnboardingProgressState.md); `outputs`: `OutputsState`; `settings`: `SettingsState`; `skillRegistry`: `SkillRegistryState`; `skills`: `SkillsState`; `streaming`: `StreamingState`; `subscriptions`: [`SubscriptionsState`](../../subscriptionsSlice/interfaces/SubscriptionsState.md); `tempState`: `TempState`; `tools`: `ToolsState`; `update`: `UpdateState`; \}, `UnknownAction`, `Tuple`\<\[`StoreEnhancer`\<\{ `dispatch`: `ThunkDispatch`\<\{ `agents`: `AgentsState`; `dashboardLayout`: [`DashboardLayoutState`](../../dashboardLayoutSlice/interfaces/DashboardLayoutState.md); `dashboards`: `DashboardsState`; `interaction`: `InteractionState`; `mcpRegistry`: `McpRegistryState`; `models`: `ModelsState`; `modes`: `ModesState`; `onboardingProgress`: [`OnboardingProgressState`](../../onboardingProgressSlice/interfaces/OnboardingProgressState.md); `outputs`: `OutputsState`; `settings`: `SettingsState`; `skillRegistry`: `SkillRegistryState`; `skills`: `SkillsState`; `streaming`: `StreamingState`; `subscriptions`: [`SubscriptionsState`](../../subscriptionsSlice/interfaces/SubscriptionsState.md); `tempState`: `TempState`; `tools`: `ToolsState`; `update`: `UpdateState`; \}\>; \}\>, `StoreEnhancer`\]\>\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/store.ts:20](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/store.ts#L20) diff --git a/frontend/.typedoc/shared/state/streamingSlice/README.md b/frontend/.typedoc/shared/state/streamingSlice/README.md new file mode 100644 index 00000000..052cdbda --- /dev/null +++ b/frontend/.typedoc/shared/state/streamingSlice/README.md @@ -0,0 +1,23 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / shared/state/streamingSlice + +# shared/state/streamingSlice + +## Interfaces + +- [StreamingMessage](interfaces/StreamingMessage.md) + +## Variables + +- [clearStreamingForSession](variables/clearStreamingForSession.md) +- [default](variables/default.md) +- [streamDelta](variables/streamDelta.md) +- [streamEnd](variables/streamEnd.md) +- [streamStart](variables/streamStart.md) + +## Functions + +- [useStreamingMessage](functions/useStreamingMessage.md) diff --git a/frontend/.typedoc/shared/state/streamingSlice/functions/useStreamingMessage.md b/frontend/.typedoc/shared/state/streamingSlice/functions/useStreamingMessage.md new file mode 100644 index 00000000..db6a7b26 --- /dev/null +++ b/frontend/.typedoc/shared/state/streamingSlice/functions/useStreamingMessage.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/streamingSlice](../README.md) / useStreamingMessage + +# Function: useStreamingMessage() + +> **useStreamingMessage**(`sessionId`): [`StreamingMessage`](../interfaces/StreamingMessage.md) \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/streamingSlice.ts:99](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/streamingSlice.ts#L99) + +## Parameters + +### sessionId + +`string` \| `null` \| `undefined` + +## Returns + +[`StreamingMessage`](../interfaces/StreamingMessage.md) \| `null` diff --git a/frontend/.typedoc/shared/state/streamingSlice/interfaces/StreamingMessage.md b/frontend/.typedoc/shared/state/streamingSlice/interfaces/StreamingMessage.md new file mode 100644 index 00000000..a334739c --- /dev/null +++ b/frontend/.typedoc/shared/state/streamingSlice/interfaces/StreamingMessage.md @@ -0,0 +1,41 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/streamingSlice](../README.md) / StreamingMessage + +# Interface: StreamingMessage + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/streamingSlice.ts:13](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/streamingSlice.ts#L13) + +## Properties + +### content + +> **content**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/streamingSlice.ts:16](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/streamingSlice.ts#L16) + +*** + +### id + +> **id**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/streamingSlice.ts:14](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/streamingSlice.ts#L14) + +*** + +### role + +> **role**: `"assistant"` \| `"tool_call"` \| `"thinking"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/streamingSlice.ts:15](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/streamingSlice.ts#L15) + +*** + +### tool\_name? + +> `optional` **tool\_name?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/streamingSlice.ts:17](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/streamingSlice.ts#L17) diff --git a/frontend/.typedoc/shared/state/streamingSlice/variables/clearStreamingForSession.md b/frontend/.typedoc/shared/state/streamingSlice/variables/clearStreamingForSession.md new file mode 100644 index 00000000..4b98e687 --- /dev/null +++ b/frontend/.typedoc/shared/state/streamingSlice/variables/clearStreamingForSession.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/streamingSlice](../README.md) / clearStreamingForSession + +# Variable: clearStreamingForSession + +> **clearStreamingForSession**: `ActionCreatorWithPayload`\<`string`, `"streaming/clearStreamingForSession"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/streamingSlice.ts:94](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/streamingSlice.ts#L94) diff --git a/frontend/.typedoc/shared/state/streamingSlice/variables/default.md b/frontend/.typedoc/shared/state/streamingSlice/variables/default.md new file mode 100644 index 00000000..73ff90ac --- /dev/null +++ b/frontend/.typedoc/shared/state/streamingSlice/variables/default.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/streamingSlice](../README.md) / default + +# Variable: default + +> **default**: `Reducer`\<`StreamingState`\> + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@reduxjs/toolkit/dist/index.d.mts:1546 + +The slice's reducer. diff --git a/frontend/.typedoc/shared/state/streamingSlice/variables/streamDelta.md b/frontend/.typedoc/shared/state/streamingSlice/variables/streamDelta.md new file mode 100644 index 00000000..25b421e7 --- /dev/null +++ b/frontend/.typedoc/shared/state/streamingSlice/variables/streamDelta.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/streamingSlice](../README.md) / streamDelta + +# Variable: streamDelta + +> **streamDelta**: `ActionCreatorWithPayload`\<\{ `delta`: `string`; `messageId`: `string`; `sessionId`: `string`; \}, `"streaming/streamDelta"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/streamingSlice.ts:94](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/streamingSlice.ts#L94) diff --git a/frontend/.typedoc/shared/state/streamingSlice/variables/streamEnd.md b/frontend/.typedoc/shared/state/streamingSlice/variables/streamEnd.md new file mode 100644 index 00000000..5fe0dd03 --- /dev/null +++ b/frontend/.typedoc/shared/state/streamingSlice/variables/streamEnd.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/streamingSlice](../README.md) / streamEnd + +# Variable: streamEnd + +> **streamEnd**: `ActionCreatorWithPayload`\<\{ `messageId`: `string`; `sessionId`: `string`; \}, `"streaming/streamEnd"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/streamingSlice.ts:94](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/streamingSlice.ts#L94) diff --git a/frontend/.typedoc/shared/state/streamingSlice/variables/streamStart.md b/frontend/.typedoc/shared/state/streamingSlice/variables/streamStart.md new file mode 100644 index 00000000..6558c916 --- /dev/null +++ b/frontend/.typedoc/shared/state/streamingSlice/variables/streamStart.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/streamingSlice](../README.md) / streamStart + +# Variable: streamStart + +> **streamStart**: `ActionCreatorWithPayload`\<\{ `messageId`: `string`; `role`: `"assistant"` \| `"tool_call"` \| `"thinking"`; `sessionId`: `string`; `toolName?`: `string`; \}, `"streaming/streamStart"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/streamingSlice.ts:94](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/streamingSlice.ts#L94) diff --git a/frontend/.typedoc/shared/state/subscriptionsSlice/README.md b/frontend/.typedoc/shared/state/subscriptionsSlice/README.md new file mode 100644 index 00000000..d63115e6 --- /dev/null +++ b/frontend/.typedoc/shared/state/subscriptionsSlice/README.md @@ -0,0 +1,24 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / shared/state/subscriptionsSlice + +# shared/state/subscriptionsSlice + +## Interfaces + +- [SubscriptionConnection](interfaces/SubscriptionConnection.md) +- [SubscriptionsState](interfaces/SubscriptionsState.md) +- [SubscriptionStatus](interfaces/SubscriptionStatus.md) + +## Variables + +- [default](variables/default.md) +- [fetchSubscriptionStatus](variables/fetchSubscriptionStatus.md) +- [setSubscriptionStatus](variables/setSubscriptionStatus.md) + +## Functions + +- [hasAnyActiveSubscription](functions/hasAnyActiveSubscription.md) +- [selectSubscriptionConnections](functions/selectSubscriptionConnections.md) diff --git a/frontend/.typedoc/shared/state/subscriptionsSlice/functions/hasAnyActiveSubscription.md b/frontend/.typedoc/shared/state/subscriptionsSlice/functions/hasAnyActiveSubscription.md new file mode 100644 index 00000000..148c36b8 --- /dev/null +++ b/frontend/.typedoc/shared/state/subscriptionsSlice/functions/hasAnyActiveSubscription.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/subscriptionsSlice](../README.md) / hasAnyActiveSubscription + +# Function: hasAnyActiveSubscription() + +> **hasAnyActiveSubscription**(`state`): `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/subscriptionsSlice.ts:77](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/subscriptionsSlice.ts#L77) + +## Parameters + +### state + +`WithSubscriptions` + +## Returns + +`boolean` diff --git a/frontend/.typedoc/shared/state/subscriptionsSlice/functions/selectSubscriptionConnections.md b/frontend/.typedoc/shared/state/subscriptionsSlice/functions/selectSubscriptionConnections.md new file mode 100644 index 00000000..bf4e0ee2 --- /dev/null +++ b/frontend/.typedoc/shared/state/subscriptionsSlice/functions/selectSubscriptionConnections.md @@ -0,0 +1,23 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/subscriptionsSlice](../README.md) / selectSubscriptionConnections + +# Function: selectSubscriptionConnections() + +> **selectSubscriptionConnections**(`state`): [`SubscriptionConnection`](../interfaces/SubscriptionConnection.md)[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/subscriptionsSlice.ts:68](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/subscriptionsSlice.ts#L68) + +Unwraps the polymorphic `providers` shape (modern object vs legacy array). + +## Parameters + +### state + +`WithSubscriptions` + +## Returns + +[`SubscriptionConnection`](../interfaces/SubscriptionConnection.md)[] diff --git a/frontend/.typedoc/shared/state/subscriptionsSlice/interfaces/SubscriptionConnection.md b/frontend/.typedoc/shared/state/subscriptionsSlice/interfaces/SubscriptionConnection.md new file mode 100644 index 00000000..1dcda532 --- /dev/null +++ b/frontend/.typedoc/shared/state/subscriptionsSlice/interfaces/SubscriptionConnection.md @@ -0,0 +1,37 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/subscriptionsSlice](../README.md) / SubscriptionConnection + +# Interface: SubscriptionConnection + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/subscriptionsSlice.ts:4](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/subscriptionsSlice.ts#L4) + +## Indexable + +> \[`key`: `string`\]: `any` + +## Properties + +### isActive? + +> `optional` **isActive?**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/subscriptionsSlice.ts:6](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/subscriptionsSlice.ts#L6) + +*** + +### provider + +> **provider**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/subscriptionsSlice.ts:5](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/subscriptionsSlice.ts#L5) + +*** + +### testStatus? + +> `optional` **testStatus?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/subscriptionsSlice.ts:7](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/subscriptionsSlice.ts#L7) diff --git a/frontend/.typedoc/shared/state/subscriptionsSlice/interfaces/SubscriptionStatus.md b/frontend/.typedoc/shared/state/subscriptionsSlice/interfaces/SubscriptionStatus.md new file mode 100644 index 00000000..02535c23 --- /dev/null +++ b/frontend/.typedoc/shared/state/subscriptionsSlice/interfaces/SubscriptionStatus.md @@ -0,0 +1,37 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/subscriptionsSlice](../README.md) / SubscriptionStatus + +# Interface: SubscriptionStatus + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/subscriptionsSlice.ts:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/subscriptionsSlice.ts#L11) + +## Indexable + +> \[`key`: `string`\]: `any` + +## Properties + +### models? + +> `optional` **models?**: `any`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/subscriptionsSlice.ts:16](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/subscriptionsSlice.ts#L16) + +*** + +### providers? + +> `optional` **providers?**: [`SubscriptionConnection`](SubscriptionConnection.md)[] \| \{ `connections?`: [`SubscriptionConnection`](SubscriptionConnection.md)[]; \} + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/subscriptionsSlice.ts:13](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/subscriptionsSlice.ts#L13) + +*** + +### running + +> **running**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/subscriptionsSlice.ts:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/subscriptionsSlice.ts#L12) diff --git a/frontend/.typedoc/shared/state/subscriptionsSlice/interfaces/SubscriptionsState.md b/frontend/.typedoc/shared/state/subscriptionsSlice/interfaces/SubscriptionsState.md new file mode 100644 index 00000000..e24cb1b3 --- /dev/null +++ b/frontend/.typedoc/shared/state/subscriptionsSlice/interfaces/SubscriptionsState.md @@ -0,0 +1,17 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/subscriptionsSlice](../README.md) / SubscriptionsState + +# Interface: SubscriptionsState + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/subscriptionsSlice.ts:20](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/subscriptionsSlice.ts#L20) + +## Properties + +### status + +> **status**: [`SubscriptionStatus`](SubscriptionStatus.md) \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/subscriptionsSlice.ts:21](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/subscriptionsSlice.ts#L21) diff --git a/frontend/.typedoc/shared/state/subscriptionsSlice/variables/default.md b/frontend/.typedoc/shared/state/subscriptionsSlice/variables/default.md new file mode 100644 index 00000000..5e67670c --- /dev/null +++ b/frontend/.typedoc/shared/state/subscriptionsSlice/variables/default.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/subscriptionsSlice](../README.md) / default + +# Variable: default + +> **default**: `Reducer`\<[`SubscriptionsState`](../interfaces/SubscriptionsState.md)\> + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@reduxjs/toolkit/dist/index.d.mts:1546 + +The slice's reducer. diff --git a/frontend/.typedoc/shared/state/subscriptionsSlice/variables/fetchSubscriptionStatus.md b/frontend/.typedoc/shared/state/subscriptionsSlice/variables/fetchSubscriptionStatus.md new file mode 100644 index 00000000..d47d62f1 --- /dev/null +++ b/frontend/.typedoc/shared/state/subscriptionsSlice/variables/fetchSubscriptionStatus.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/subscriptionsSlice](../README.md) / fetchSubscriptionStatus + +# Variable: fetchSubscriptionStatus + +> `const` **fetchSubscriptionStatus**: `AsyncThunk`\<[`SubscriptionStatus`](../interfaces/SubscriptionStatus.md), \{ `preserveTransient?`: `boolean`; \} \| `undefined`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/subscriptionsSlice.ts:32](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/subscriptionsSlice.ts#L32) + +Mirror /agents/subscriptions/status into Redux; preserveTransient debounces is_running() false negatives. diff --git a/frontend/.typedoc/shared/state/subscriptionsSlice/variables/setSubscriptionStatus.md b/frontend/.typedoc/shared/state/subscriptionsSlice/variables/setSubscriptionStatus.md new file mode 100644 index 00000000..756a2d7a --- /dev/null +++ b/frontend/.typedoc/shared/state/subscriptionsSlice/variables/setSubscriptionStatus.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/subscriptionsSlice](../README.md) / setSubscriptionStatus + +# Variable: setSubscriptionStatus + +> **setSubscriptionStatus**: `ActionCreatorWithPayload`\<[`SubscriptionStatus`](../interfaces/SubscriptionStatus.md) \| `null`, `"subscriptions/setSubscriptionStatus"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/subscriptionsSlice.ts:62](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/subscriptionsSlice.ts#L62) diff --git a/frontend/.typedoc/shared/state/tempStateSlice/README.md b/frontend/.typedoc/shared/state/tempStateSlice/README.md new file mode 100644 index 00000000..811abba4 --- /dev/null +++ b/frontend/.typedoc/shared/state/tempStateSlice/README.md @@ -0,0 +1,16 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / shared/state/tempStateSlice + +# shared/state/tempStateSlice + +## Variables + +- [clearPendingBrowserUrl](variables/clearPendingBrowserUrl.md) +- [clearPendingFocusAgentId](variables/clearPendingFocusAgentId.md) +- [default](variables/default.md) +- [setLastDashboardId](variables/setLastDashboardId.md) +- [setPendingBrowserUrl](variables/setPendingBrowserUrl.md) +- [setPendingFocusAgentId](variables/setPendingFocusAgentId.md) diff --git a/frontend/.typedoc/shared/state/tempStateSlice/variables/clearPendingBrowserUrl.md b/frontend/.typedoc/shared/state/tempStateSlice/variables/clearPendingBrowserUrl.md new file mode 100644 index 00000000..0aca99e1 --- /dev/null +++ b/frontend/.typedoc/shared/state/tempStateSlice/variables/clearPendingBrowserUrl.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/tempStateSlice](../README.md) / clearPendingBrowserUrl + +# Variable: clearPendingBrowserUrl + +> **clearPendingBrowserUrl**: `ActionCreatorWithoutPayload`\<`"tempState/clearPendingBrowserUrl"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/tempStateSlice.ts:39](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/tempStateSlice.ts#L39) diff --git a/frontend/.typedoc/shared/state/tempStateSlice/variables/clearPendingFocusAgentId.md b/frontend/.typedoc/shared/state/tempStateSlice/variables/clearPendingFocusAgentId.md new file mode 100644 index 00000000..5adc5524 --- /dev/null +++ b/frontend/.typedoc/shared/state/tempStateSlice/variables/clearPendingFocusAgentId.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/tempStateSlice](../README.md) / clearPendingFocusAgentId + +# Variable: clearPendingFocusAgentId + +> **clearPendingFocusAgentId**: `ActionCreatorWithoutPayload`\<`"tempState/clearPendingFocusAgentId"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/tempStateSlice.ts:42](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/tempStateSlice.ts#L42) diff --git a/frontend/.typedoc/shared/state/tempStateSlice/variables/default.md b/frontend/.typedoc/shared/state/tempStateSlice/variables/default.md new file mode 100644 index 00000000..ed8e6137 --- /dev/null +++ b/frontend/.typedoc/shared/state/tempStateSlice/variables/default.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/tempStateSlice](../README.md) / default + +# Variable: default + +> **default**: `Reducer`\<`TempState`\> + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@reduxjs/toolkit/dist/index.d.mts:1546 + +The slice's reducer. diff --git a/frontend/.typedoc/shared/state/tempStateSlice/variables/setLastDashboardId.md b/frontend/.typedoc/shared/state/tempStateSlice/variables/setLastDashboardId.md new file mode 100644 index 00000000..07ddd5ff --- /dev/null +++ b/frontend/.typedoc/shared/state/tempStateSlice/variables/setLastDashboardId.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/tempStateSlice](../README.md) / setLastDashboardId + +# Variable: setLastDashboardId + +> **setLastDashboardId**: `ActionCreatorWithPayload`\<`string`, `"tempState/setLastDashboardId"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/tempStateSlice.ts:40](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/tempStateSlice.ts#L40) diff --git a/frontend/.typedoc/shared/state/tempStateSlice/variables/setPendingBrowserUrl.md b/frontend/.typedoc/shared/state/tempStateSlice/variables/setPendingBrowserUrl.md new file mode 100644 index 00000000..04fb2965 --- /dev/null +++ b/frontend/.typedoc/shared/state/tempStateSlice/variables/setPendingBrowserUrl.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/tempStateSlice](../README.md) / setPendingBrowserUrl + +# Variable: setPendingBrowserUrl + +> **setPendingBrowserUrl**: `ActionCreatorWithPayload`\<`string`, `"tempState/setPendingBrowserUrl"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/tempStateSlice.ts:38](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/tempStateSlice.ts#L38) diff --git a/frontend/.typedoc/shared/state/tempStateSlice/variables/setPendingFocusAgentId.md b/frontend/.typedoc/shared/state/tempStateSlice/variables/setPendingFocusAgentId.md new file mode 100644 index 00000000..688b5f3c --- /dev/null +++ b/frontend/.typedoc/shared/state/tempStateSlice/variables/setPendingFocusAgentId.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/tempStateSlice](../README.md) / setPendingFocusAgentId + +# Variable: setPendingFocusAgentId + +> **setPendingFocusAgentId**: `ActionCreatorWithPayload`\<`string`, `"tempState/setPendingFocusAgentId"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/tempStateSlice.ts:41](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/tempStateSlice.ts#L41) diff --git a/frontend/.typedoc/shared/state/toolsSlice/README.md b/frontend/.typedoc/shared/state/toolsSlice/README.md new file mode 100644 index 00000000..a4951110 --- /dev/null +++ b/frontend/.typedoc/shared/state/toolsSlice/README.md @@ -0,0 +1,30 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / shared/state/toolsSlice + +# shared/state/toolsSlice + +## Interfaces + +- [BuiltinTool](interfaces/BuiltinTool.md) +- [ToolDefinition](interfaces/ToolDefinition.md) + +## Variables + +- [createTool](variables/createTool.md) +- [default](variables/default.md) +- [deleteTool](variables/deleteTool.md) +- [disconnectM365](variables/disconnectM365.md) +- [disconnectOAuth](variables/disconnectOAuth.md) +- [discoverTools](variables/discoverTools.md) +- [fetchBuiltinPermissions](variables/fetchBuiltinPermissions.md) +- [fetchBuiltinTools](variables/fetchBuiltinTools.md) +- [fetchTools](variables/fetchTools.md) +- [fetchToolStatus](variables/fetchToolStatus.md) +- [pollDeviceCodeStatus](variables/pollDeviceCodeStatus.md) +- [startDeviceCodeLogin](variables/startDeviceCodeLogin.md) +- [startOAuth](variables/startOAuth.md) +- [updateBuiltinPermissions](variables/updateBuiltinPermissions.md) +- [updateTool](variables/updateTool.md) diff --git a/frontend/.typedoc/shared/state/toolsSlice/interfaces/BuiltinTool.md b/frontend/.typedoc/shared/state/toolsSlice/interfaces/BuiltinTool.md new file mode 100644 index 00000000..59d5169c --- /dev/null +++ b/frontend/.typedoc/shared/state/toolsSlice/interfaces/BuiltinTool.md @@ -0,0 +1,49 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/toolsSlice](../README.md) / BuiltinTool + +# Interface: BuiltinTool + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/toolsSlice.ts:21](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/toolsSlice.ts#L21) + +## Properties + +### category + +> **category**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/toolsSlice.ts:25](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/toolsSlice.ts#L25) + +*** + +### deferred + +> **deferred**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/toolsSlice.ts:26](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/toolsSlice.ts#L26) + +*** + +### description + +> **description**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/toolsSlice.ts:24](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/toolsSlice.ts#L24) + +*** + +### display\_name? + +> `optional` **display\_name?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/toolsSlice.ts:23](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/toolsSlice.ts#L23) + +*** + +### name + +> **name**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/toolsSlice.ts:22](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/toolsSlice.ts#L22) diff --git a/frontend/.typedoc/shared/state/toolsSlice/interfaces/ToolDefinition.md b/frontend/.typedoc/shared/state/toolsSlice/interfaces/ToolDefinition.md new file mode 100644 index 00000000..2be2904b --- /dev/null +++ b/frontend/.typedoc/shared/state/toolsSlice/interfaces/ToolDefinition.md @@ -0,0 +1,105 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/toolsSlice](../README.md) / ToolDefinition + +# Interface: ToolDefinition + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/toolsSlice.ts:6](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/toolsSlice.ts#L6) + +## Properties + +### auth\_status + +> **auth\_status**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/toolsSlice.ts:14](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/toolsSlice.ts#L14) + +*** + +### auth\_type + +> **auth\_type**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/toolsSlice.ts:13](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/toolsSlice.ts#L13) + +*** + +### command + +> **command**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/toolsSlice.ts:10](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/toolsSlice.ts#L10) + +*** + +### connected\_account\_email? + +> `optional` **connected\_account\_email?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/toolsSlice.ts:17](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/toolsSlice.ts#L17) + +*** + +### credentials + +> **credentials**: `Record`\<`string`, `string`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/toolsSlice.ts:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/toolsSlice.ts#L12) + +*** + +### description + +> **description**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/toolsSlice.ts:9](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/toolsSlice.ts#L9) + +*** + +### enabled? + +> `optional` **enabled?**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/toolsSlice.ts:18](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/toolsSlice.ts#L18) + +*** + +### id + +> **id**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/toolsSlice.ts:7](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/toolsSlice.ts#L7) + +*** + +### mcp\_config + +> **mcp\_config**: `Record`\<`string`, `any`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/toolsSlice.ts:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/toolsSlice.ts#L11) + +*** + +### name + +> **name**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/toolsSlice.ts:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/toolsSlice.ts#L8) + +*** + +### oauth\_tokens + +> **oauth\_tokens**: `Record`\<`string`, `any`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/toolsSlice.ts:15](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/toolsSlice.ts#L15) + +*** + +### tool\_permissions + +> **tool\_permissions**: `Record`\<`string`, `any`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/toolsSlice.ts:16](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/toolsSlice.ts#L16) diff --git a/frontend/.typedoc/shared/state/toolsSlice/variables/createTool.md b/frontend/.typedoc/shared/state/toolsSlice/variables/createTool.md new file mode 100644 index 00000000..b2a2c96b --- /dev/null +++ b/frontend/.typedoc/shared/state/toolsSlice/variables/createTool.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/toolsSlice](../README.md) / createTool + +# Variable: createTool + +> `const` **createTool**: `AsyncThunk`\<[`ToolDefinition`](../interfaces/ToolDefinition.md), `Partial`\<`Omit`\<[`ToolDefinition`](../interfaces/ToolDefinition.md), `"id"`\>\> & `object`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/toolsSlice.ts:60](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/toolsSlice.ts#L60) diff --git a/frontend/.typedoc/shared/state/toolsSlice/variables/default.md b/frontend/.typedoc/shared/state/toolsSlice/variables/default.md new file mode 100644 index 00000000..4ce08ee1 --- /dev/null +++ b/frontend/.typedoc/shared/state/toolsSlice/variables/default.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/toolsSlice](../README.md) / default + +# Variable: default + +> **default**: `Reducer`\<`ToolsState`\> + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@reduxjs/toolkit/dist/index.d.mts:1546 + +The slice's reducer. diff --git a/frontend/.typedoc/shared/state/toolsSlice/variables/deleteTool.md b/frontend/.typedoc/shared/state/toolsSlice/variables/deleteTool.md new file mode 100644 index 00000000..76360450 --- /dev/null +++ b/frontend/.typedoc/shared/state/toolsSlice/variables/deleteTool.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/toolsSlice](../README.md) / deleteTool + +# Variable: deleteTool + +> `const` **deleteTool**: `AsyncThunk`\<`string`, `string`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/toolsSlice.ts:86](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/toolsSlice.ts#L86) diff --git a/frontend/.typedoc/shared/state/toolsSlice/variables/disconnectM365.md b/frontend/.typedoc/shared/state/toolsSlice/variables/disconnectM365.md new file mode 100644 index 00000000..3a4751b1 --- /dev/null +++ b/frontend/.typedoc/shared/state/toolsSlice/variables/disconnectM365.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/toolsSlice](../README.md) / disconnectM365 + +# Variable: disconnectM365 + +> `const` **disconnectM365**: `AsyncThunk`\<[`ToolDefinition`](../interfaces/ToolDefinition.md), `string`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/toolsSlice.ts:118](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/toolsSlice.ts#L118) diff --git a/frontend/.typedoc/shared/state/toolsSlice/variables/disconnectOAuth.md b/frontend/.typedoc/shared/state/toolsSlice/variables/disconnectOAuth.md new file mode 100644 index 00000000..04639f5f --- /dev/null +++ b/frontend/.typedoc/shared/state/toolsSlice/variables/disconnectOAuth.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/toolsSlice](../README.md) / disconnectOAuth + +# Variable: disconnectOAuth + +> `const` **disconnectOAuth**: `AsyncThunk`\<[`ToolDefinition`](../interfaces/ToolDefinition.md), `string`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/toolsSlice.ts:128](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/toolsSlice.ts#L128) diff --git a/frontend/.typedoc/shared/state/toolsSlice/variables/discoverTools.md b/frontend/.typedoc/shared/state/toolsSlice/variables/discoverTools.md new file mode 100644 index 00000000..b2568bc9 --- /dev/null +++ b/frontend/.typedoc/shared/state/toolsSlice/variables/discoverTools.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/toolsSlice](../README.md) / discoverTools + +# Variable: discoverTools + +> `const` **discoverTools**: `AsyncThunk`\<[`ToolDefinition`](../interfaces/ToolDefinition.md), `string`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/toolsSlice.ts:147](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/toolsSlice.ts#L147) diff --git a/frontend/.typedoc/shared/state/toolsSlice/variables/fetchBuiltinPermissions.md b/frontend/.typedoc/shared/state/toolsSlice/variables/fetchBuiltinPermissions.md new file mode 100644 index 00000000..da88c399 --- /dev/null +++ b/frontend/.typedoc/shared/state/toolsSlice/variables/fetchBuiltinPermissions.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/toolsSlice](../README.md) / fetchBuiltinPermissions + +# Variable: fetchBuiltinPermissions + +> `const` **fetchBuiltinPermissions**: `AsyncThunk`\<`Record`\<`string`, `string`\>, `void`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/toolsSlice.ts:160](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/toolsSlice.ts#L160) diff --git a/frontend/.typedoc/shared/state/toolsSlice/variables/fetchBuiltinTools.md b/frontend/.typedoc/shared/state/toolsSlice/variables/fetchBuiltinTools.md new file mode 100644 index 00000000..f100e04d --- /dev/null +++ b/frontend/.typedoc/shared/state/toolsSlice/variables/fetchBuiltinTools.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/toolsSlice](../README.md) / fetchBuiltinTools + +# Variable: fetchBuiltinTools + +> `const` **fetchBuiltinTools**: `AsyncThunk`\<[`BuiltinTool`](../interfaces/BuiltinTool.md)[], `void`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/toolsSlice.ts:50](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/toolsSlice.ts#L50) diff --git a/frontend/.typedoc/shared/state/toolsSlice/variables/fetchToolStatus.md b/frontend/.typedoc/shared/state/toolsSlice/variables/fetchToolStatus.md new file mode 100644 index 00000000..db7b9839 --- /dev/null +++ b/frontend/.typedoc/shared/state/toolsSlice/variables/fetchToolStatus.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/toolsSlice](../README.md) / fetchToolStatus + +# Variable: fetchToolStatus + +> `const` **fetchToolStatus**: `AsyncThunk`\<[`ToolDefinition`](../interfaces/ToolDefinition.md), `string`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/toolsSlice.ts:138](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/toolsSlice.ts#L138) diff --git a/frontend/.typedoc/shared/state/toolsSlice/variables/fetchTools.md b/frontend/.typedoc/shared/state/toolsSlice/variables/fetchTools.md new file mode 100644 index 00000000..74b0d042 --- /dev/null +++ b/frontend/.typedoc/shared/state/toolsSlice/variables/fetchTools.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/toolsSlice](../README.md) / fetchTools + +# Variable: fetchTools + +> `const` **fetchTools**: `AsyncThunk`\<[`ToolDefinition`](../interfaces/ToolDefinition.md)[], `void`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/toolsSlice.ts:40](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/toolsSlice.ts#L40) diff --git a/frontend/.typedoc/shared/state/toolsSlice/variables/pollDeviceCodeStatus.md b/frontend/.typedoc/shared/state/toolsSlice/variables/pollDeviceCodeStatus.md new file mode 100644 index 00000000..b23ef733 --- /dev/null +++ b/frontend/.typedoc/shared/state/toolsSlice/variables/pollDeviceCodeStatus.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/toolsSlice](../README.md) / pollDeviceCodeStatus + +# Variable: pollDeviceCodeStatus + +> `const` **pollDeviceCodeStatus**: `AsyncThunk`\<`any`, `string`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/toolsSlice.ts:110](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/toolsSlice.ts#L110) diff --git a/frontend/.typedoc/shared/state/toolsSlice/variables/startDeviceCodeLogin.md b/frontend/.typedoc/shared/state/toolsSlice/variables/startDeviceCodeLogin.md new file mode 100644 index 00000000..3e28c214 --- /dev/null +++ b/frontend/.typedoc/shared/state/toolsSlice/variables/startDeviceCodeLogin.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/toolsSlice](../README.md) / startDeviceCodeLogin + +# Variable: startDeviceCodeLogin + +> `const` **startDeviceCodeLogin**: `AsyncThunk`\<`any`, `string`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/toolsSlice.ts:101](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/toolsSlice.ts#L101) diff --git a/frontend/.typedoc/shared/state/toolsSlice/variables/startOAuth.md b/frontend/.typedoc/shared/state/toolsSlice/variables/startOAuth.md new file mode 100644 index 00000000..51411e12 --- /dev/null +++ b/frontend/.typedoc/shared/state/toolsSlice/variables/startOAuth.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/toolsSlice](../README.md) / startOAuth + +# Variable: startOAuth + +> `const` **startOAuth**: `AsyncThunk`\<\{ `auth_url`: `string`; \}, `string`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/toolsSlice.ts:91](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/toolsSlice.ts#L91) diff --git a/frontend/.typedoc/shared/state/toolsSlice/variables/updateBuiltinPermissions.md b/frontend/.typedoc/shared/state/toolsSlice/variables/updateBuiltinPermissions.md new file mode 100644 index 00000000..eac9e554 --- /dev/null +++ b/frontend/.typedoc/shared/state/toolsSlice/variables/updateBuiltinPermissions.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/toolsSlice](../README.md) / updateBuiltinPermissions + +# Variable: updateBuiltinPermissions + +> `const` **updateBuiltinPermissions**: `AsyncThunk`\<`Record`\<`string`, `string`\>, `Record`\<`string`, `string`\>, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/toolsSlice.ts:166](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/toolsSlice.ts#L166) diff --git a/frontend/.typedoc/shared/state/toolsSlice/variables/updateTool.md b/frontend/.typedoc/shared/state/toolsSlice/variables/updateTool.md new file mode 100644 index 00000000..63f88e3d --- /dev/null +++ b/frontend/.typedoc/shared/state/toolsSlice/variables/updateTool.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/toolsSlice](../README.md) / updateTool + +# Variable: updateTool + +> `const` **updateTool**: `AsyncThunk`\<[`ToolDefinition`](../interfaces/ToolDefinition.md), `Partial`\<[`ToolDefinition`](../interfaces/ToolDefinition.md)\> & `object`, `AsyncThunkConfig`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/toolsSlice.ts:73](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/toolsSlice.ts#L73) diff --git a/frontend/.typedoc/shared/state/updateSlice/README.md b/frontend/.typedoc/shared/state/updateSlice/README.md new file mode 100644 index 00000000..1c19d39f --- /dev/null +++ b/frontend/.typedoc/shared/state/updateSlice/README.md @@ -0,0 +1,24 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / shared/state/updateSlice + +# shared/state/updateSlice + +## Type Aliases + +- [UpdateStatus](type-aliases/UpdateStatus.md) + +## Variables + +- [default](variables/default.md) +- [resetUpdateStatus](variables/resetUpdateStatus.md) +- [setAppVersion](variables/setAppVersion.md) +- [setChecking](variables/setChecking.md) +- [setDownloading](variables/setDownloading.md) +- [setInstalling](variables/setInstalling.md) +- [setUpdateAvailable](variables/setUpdateAvailable.md) +- [setUpdateDownloaded](variables/setUpdateDownloaded.md) +- [setUpdateError](variables/setUpdateError.md) +- [setUpdateNotAvailable](variables/setUpdateNotAvailable.md) diff --git a/frontend/.typedoc/shared/state/updateSlice/type-aliases/UpdateStatus.md b/frontend/.typedoc/shared/state/updateSlice/type-aliases/UpdateStatus.md new file mode 100644 index 00000000..b9bacb2f --- /dev/null +++ b/frontend/.typedoc/shared/state/updateSlice/type-aliases/UpdateStatus.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/updateSlice](../README.md) / UpdateStatus + +# Type Alias: UpdateStatus + +> **UpdateStatus** = `"idle"` \| `"checking"` \| `"available"` \| `"not-available"` \| `"downloading"` \| `"downloaded"` \| `"error"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/updateSlice.ts:3](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/updateSlice.ts#L3) diff --git a/frontend/.typedoc/shared/state/updateSlice/variables/default.md b/frontend/.typedoc/shared/state/updateSlice/variables/default.md new file mode 100644 index 00000000..172a6b52 --- /dev/null +++ b/frontend/.typedoc/shared/state/updateSlice/variables/default.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/updateSlice](../README.md) / default + +# Variable: default + +> **default**: `Reducer`\<`UpdateState`\> + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/@reduxjs/toolkit/dist/index.d.mts:1546 + +The slice's reducer. diff --git a/frontend/.typedoc/shared/state/updateSlice/variables/resetUpdateStatus.md b/frontend/.typedoc/shared/state/updateSlice/variables/resetUpdateStatus.md new file mode 100644 index 00000000..1a2fa3a0 --- /dev/null +++ b/frontend/.typedoc/shared/state/updateSlice/variables/resetUpdateStatus.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/updateSlice](../README.md) / resetUpdateStatus + +# Variable: resetUpdateStatus + +> **resetUpdateStatus**: `ActionCreatorWithoutPayload`\<`"update/resetUpdateStatus"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/updateSlice.ts:84](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/updateSlice.ts#L84) diff --git a/frontend/.typedoc/shared/state/updateSlice/variables/setAppVersion.md b/frontend/.typedoc/shared/state/updateSlice/variables/setAppVersion.md new file mode 100644 index 00000000..dd2ffefb --- /dev/null +++ b/frontend/.typedoc/shared/state/updateSlice/variables/setAppVersion.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/updateSlice](../README.md) / setAppVersion + +# Variable: setAppVersion + +> **setAppVersion**: `ActionCreatorWithPayload`\<`string`, `"update/setAppVersion"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/updateSlice.ts:76](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/updateSlice.ts#L76) diff --git a/frontend/.typedoc/shared/state/updateSlice/variables/setChecking.md b/frontend/.typedoc/shared/state/updateSlice/variables/setChecking.md new file mode 100644 index 00000000..b5ceedf0 --- /dev/null +++ b/frontend/.typedoc/shared/state/updateSlice/variables/setChecking.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/updateSlice](../README.md) / setChecking + +# Variable: setChecking + +> **setChecking**: `ActionCreatorWithoutPayload`\<`"update/setChecking"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/updateSlice.ts:77](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/updateSlice.ts#L77) diff --git a/frontend/.typedoc/shared/state/updateSlice/variables/setDownloading.md b/frontend/.typedoc/shared/state/updateSlice/variables/setDownloading.md new file mode 100644 index 00000000..502db5f7 --- /dev/null +++ b/frontend/.typedoc/shared/state/updateSlice/variables/setDownloading.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/updateSlice](../README.md) / setDownloading + +# Variable: setDownloading + +> **setDownloading**: `ActionCreatorWithPayload`\<`number`, `"update/setDownloading"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/updateSlice.ts:80](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/updateSlice.ts#L80) diff --git a/frontend/.typedoc/shared/state/updateSlice/variables/setInstalling.md b/frontend/.typedoc/shared/state/updateSlice/variables/setInstalling.md new file mode 100644 index 00000000..e202d4e2 --- /dev/null +++ b/frontend/.typedoc/shared/state/updateSlice/variables/setInstalling.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/updateSlice](../README.md) / setInstalling + +# Variable: setInstalling + +> **setInstalling**: `ActionCreatorWithoutPayload`\<`"update/setInstalling"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/updateSlice.ts:83](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/updateSlice.ts#L83) diff --git a/frontend/.typedoc/shared/state/updateSlice/variables/setUpdateAvailable.md b/frontend/.typedoc/shared/state/updateSlice/variables/setUpdateAvailable.md new file mode 100644 index 00000000..6fb5d01b --- /dev/null +++ b/frontend/.typedoc/shared/state/updateSlice/variables/setUpdateAvailable.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/updateSlice](../README.md) / setUpdateAvailable + +# Variable: setUpdateAvailable + +> **setUpdateAvailable**: `ActionCreatorWithPayload`\<`string`, `"update/setUpdateAvailable"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/updateSlice.ts:78](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/updateSlice.ts#L78) diff --git a/frontend/.typedoc/shared/state/updateSlice/variables/setUpdateDownloaded.md b/frontend/.typedoc/shared/state/updateSlice/variables/setUpdateDownloaded.md new file mode 100644 index 00000000..5c5f837e --- /dev/null +++ b/frontend/.typedoc/shared/state/updateSlice/variables/setUpdateDownloaded.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/updateSlice](../README.md) / setUpdateDownloaded + +# Variable: setUpdateDownloaded + +> **setUpdateDownloaded**: `ActionCreatorWithoutPayload`\<`"update/setUpdateDownloaded"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/updateSlice.ts:81](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/updateSlice.ts#L81) diff --git a/frontend/.typedoc/shared/state/updateSlice/variables/setUpdateError.md b/frontend/.typedoc/shared/state/updateSlice/variables/setUpdateError.md new file mode 100644 index 00000000..52115453 --- /dev/null +++ b/frontend/.typedoc/shared/state/updateSlice/variables/setUpdateError.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/updateSlice](../README.md) / setUpdateError + +# Variable: setUpdateError + +> **setUpdateError**: `ActionCreatorWithPayload`\<`string`, `"update/setUpdateError"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/updateSlice.ts:82](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/updateSlice.ts#L82) diff --git a/frontend/.typedoc/shared/state/updateSlice/variables/setUpdateNotAvailable.md b/frontend/.typedoc/shared/state/updateSlice/variables/setUpdateNotAvailable.md new file mode 100644 index 00000000..1d0eb9b7 --- /dev/null +++ b/frontend/.typedoc/shared/state/updateSlice/variables/setUpdateNotAvailable.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/state/updateSlice](../README.md) / setUpdateNotAvailable + +# Variable: setUpdateNotAvailable + +> **setUpdateNotAvailable**: `ActionCreatorWithoutPayload`\<`"update/setUpdateNotAvailable"`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/state/updateSlice.ts:79](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/state/updateSlice.ts#L79) diff --git a/frontend/.typedoc/shared/statusLabel/README.md b/frontend/.typedoc/shared/statusLabel/README.md new file mode 100644 index 00000000..1c936300 --- /dev/null +++ b/frontend/.typedoc/shared/statusLabel/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../README.md) + +*** + +[open-swarm](../../README.md) / shared/statusLabel + +# shared/statusLabel + +## Functions + +- [friendlyStatusLabel](functions/friendlyStatusLabel.md) diff --git a/frontend/.typedoc/shared/statusLabel/functions/friendlyStatusLabel.md b/frontend/.typedoc/shared/statusLabel/functions/friendlyStatusLabel.md new file mode 100644 index 00000000..0f1e8dc9 --- /dev/null +++ b/frontend/.typedoc/shared/statusLabel/functions/friendlyStatusLabel.md @@ -0,0 +1,23 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/statusLabel](../README.md) / friendlyStatusLabel + +# Function: friendlyStatusLabel() + +> **friendlyStatusLabel**(`status`): `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/statusLabel.ts:2](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/statusLabel.ts#L2) + +Plain-English session status for user-facing chips; the raw enum values read as dev-speak. + +## Parameters + +### status + +`string` + +## Returns + +`string` diff --git a/frontend/.typedoc/shared/styles/ThemeContext/README.md b/frontend/.typedoc/shared/styles/ThemeContext/README.md new file mode 100644 index 00000000..660d75ee --- /dev/null +++ b/frontend/.typedoc/shared/styles/ThemeContext/README.md @@ -0,0 +1,16 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / shared/styles/ThemeContext + +# shared/styles/ThemeContext + +## Variables + +- [ThemeProvider](variables/ThemeProvider.md) + +## Functions + +- [useClaudeTokens](functions/useClaudeTokens.md) +- [useThemeMode](functions/useThemeMode.md) diff --git a/frontend/.typedoc/shared/styles/ThemeContext/functions/useClaudeTokens.md b/frontend/.typedoc/shared/styles/ThemeContext/functions/useClaudeTokens.md new file mode 100644 index 00000000..0ebdec14 --- /dev/null +++ b/frontend/.typedoc/shared/styles/ThemeContext/functions/useClaudeTokens.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/styles/ThemeContext](../README.md) / useClaudeTokens + +# Function: useClaudeTokens() + +> **useClaudeTokens**(): [`ClaudeTokens`](../../claudeTokens/interfaces/ClaudeTokens.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/styles/ThemeContext.tsx:48](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/styles/ThemeContext.tsx#L48) + +## Returns + +[`ClaudeTokens`](../../claudeTokens/interfaces/ClaudeTokens.md) diff --git a/frontend/.typedoc/shared/styles/ThemeContext/functions/useThemeMode.md b/frontend/.typedoc/shared/styles/ThemeContext/functions/useThemeMode.md new file mode 100644 index 00000000..7731c001 --- /dev/null +++ b/frontend/.typedoc/shared/styles/ThemeContext/functions/useThemeMode.md @@ -0,0 +1,41 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/styles/ThemeContext](../README.md) / useThemeMode + +# Function: useThemeMode() + +> **useThemeMode**(): `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/styles/ThemeContext.tsx:49](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/styles/ThemeContext.tsx#L49) + +## Returns + +`object` + +### mode + +> **mode**: `ThemeMode` + +### setMode + +> **setMode**: (`mode`) => `void` + +#### Parameters + +##### mode + +`ThemeMode` + +#### Returns + +`void` + +### toggleMode + +> **toggleMode**: () => `void` + +#### Returns + +`void` diff --git a/frontend/.typedoc/shared/styles/ThemeContext/variables/ThemeProvider.md b/frontend/.typedoc/shared/styles/ThemeContext/variables/ThemeProvider.md new file mode 100644 index 00000000..ea444dbe --- /dev/null +++ b/frontend/.typedoc/shared/styles/ThemeContext/variables/ThemeProvider.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/styles/ThemeContext](../README.md) / ThemeProvider + +# Variable: ThemeProvider + +> `const` **ThemeProvider**: `React.FC`\<\{ `children`: `React.ReactNode`; \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/styles/ThemeContext.tsx:31](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/styles/ThemeContext.tsx#L31) diff --git a/frontend/.typedoc/shared/styles/claudeTokens/README.md b/frontend/.typedoc/shared/styles/claudeTokens/README.md new file mode 100644 index 00000000..063ec1e2 --- /dev/null +++ b/frontend/.typedoc/shared/styles/claudeTokens/README.md @@ -0,0 +1,17 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / shared/styles/claudeTokens + +# shared/styles/claudeTokens + +## Interfaces + +- [ClaudeTokens](interfaces/ClaudeTokens.md) + +## Variables + +- [~~claude~~](variables/claude.md) +- [darkTokens](variables/darkTokens.md) +- [lightTokens](variables/lightTokens.md) diff --git a/frontend/.typedoc/shared/styles/claudeTokens/interfaces/ClaudeTokens.md b/frontend/.typedoc/shared/styles/claudeTokens/interfaces/ClaudeTokens.md new file mode 100644 index 00000000..78c00417 --- /dev/null +++ b/frontend/.typedoc/shared/styles/claudeTokens/interfaces/ClaudeTokens.md @@ -0,0 +1,241 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/styles/claudeTokens](../README.md) / ClaudeTokens + +# Interface: ClaudeTokens + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/styles/claudeTokens.ts:1](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/styles/claudeTokens.ts#L1) + +## Properties + +### accent + +> **accent**: `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/styles/claudeTokens.ts:4](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/styles/claudeTokens.ts#L4) + +#### hover + +> **hover**: `string` + +#### pressed + +> **pressed**: `string` + +#### primary + +> **primary**: `string` + +*** + +### bg + +> **bg**: `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/styles/claudeTokens.ts:2](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/styles/claudeTokens.ts#L2) + +#### elevated + +> **elevated**: `string` + +#### inverse + +> **inverse**: `string` + +#### page + +> **page**: `string` + +#### secondary + +> **secondary**: `string` + +#### surface + +> **surface**: `string` + +*** + +### border + +> **border**: `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/styles/claudeTokens.ts:5](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/styles/claudeTokens.ts#L5) + +#### medium + +> **medium**: `string` + +#### strong + +> **strong**: `string` + +#### subtle + +> **subtle**: `string` + +#### width + +> **width**: `string` + +*** + +### font + +> **font**: `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/styles/claudeTokens.ts:10](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/styles/claudeTokens.ts#L10) + +#### mono + +> **mono**: `string` + +#### sans + +> **sans**: `string` + +*** + +### radius + +> **radius**: `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/styles/claudeTokens.ts:7](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/styles/claudeTokens.ts#L7) + +#### full + +> **full**: `number` + +#### lg + +> **lg**: `number` + +#### md + +> **md**: `number` + +#### sm + +> **sm**: `number` + +#### xl + +> **xl**: `number` + +#### xs + +> **xs**: `number` + +*** + +### shadow + +> **shadow**: `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/styles/claudeTokens.ts:6](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/styles/claudeTokens.ts#L6) + +#### lg + +> **lg**: `string` + +#### md + +> **md**: `string` + +#### sm + +> **sm**: `string` + +*** + +### status + +> **status**: `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/styles/claudeTokens.ts:8](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/styles/claudeTokens.ts#L8) + +#### error + +> **error**: `string` + +#### errorBg + +> **errorBg**: `string` + +#### info + +> **info**: `string` + +#### infoBg + +> **infoBg**: `string` + +#### success + +> **success**: `string` + +#### successBg + +> **successBg**: `string` + +#### warning + +> **warning**: `string` + +#### warningBg + +> **warningBg**: `string` + +*** + +### text + +> **text**: `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/styles/claudeTokens.ts:3](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/styles/claudeTokens.ts#L3) + +#### ghost + +> **ghost**: `string` + +#### inverse + +> **inverse**: `string` + +#### muted + +> **muted**: `string` + +#### primary + +> **primary**: `string` + +#### secondary + +> **secondary**: `string` + +#### tertiary + +> **tertiary**: `string` + +*** + +### transition + +> **transition**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/styles/claudeTokens.ts:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/styles/claudeTokens.ts#L11) + +*** + +### user + +> **user**: `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/styles/claudeTokens.ts:9](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/styles/claudeTokens.ts#L9) + +#### bubble + +> **bubble**: `string` diff --git a/frontend/.typedoc/shared/styles/claudeTokens/variables/claude.md b/frontend/.typedoc/shared/styles/claudeTokens/variables/claude.md new file mode 100644 index 00000000..9e5ec022 --- /dev/null +++ b/frontend/.typedoc/shared/styles/claudeTokens/variables/claude.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/styles/claudeTokens](../README.md) / claude + +# ~~Variable: claude~~ + +> `const` **claude**: [`ClaudeTokens`](../interfaces/ClaudeTokens.md) = `lightTokens` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/styles/claudeTokens.ts:117](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/styles/claudeTokens.ts#L117) + +## Deprecated + +Use useClaudeTokens() hook instead for dark mode support diff --git a/frontend/.typedoc/shared/styles/claudeTokens/variables/darkTokens.md b/frontend/.typedoc/shared/styles/claudeTokens/variables/darkTokens.md new file mode 100644 index 00000000..edf5fc9c --- /dev/null +++ b/frontend/.typedoc/shared/styles/claudeTokens/variables/darkTokens.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/styles/claudeTokens](../README.md) / darkTokens + +# Variable: darkTokens + +> `const` **darkTokens**: [`ClaudeTokens`](../interfaces/ClaudeTokens.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/styles/claudeTokens.ts:65](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/styles/claudeTokens.ts#L65) diff --git a/frontend/.typedoc/shared/styles/claudeTokens/variables/lightTokens.md b/frontend/.typedoc/shared/styles/claudeTokens/variables/lightTokens.md new file mode 100644 index 00000000..a0174132 --- /dev/null +++ b/frontend/.typedoc/shared/styles/claudeTokens/variables/lightTokens.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/styles/claudeTokens](../README.md) / lightTokens + +# Variable: lightTokens + +> `const` **lightTokens**: [`ClaudeTokens`](../interfaces/ClaudeTokens.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/styles/claudeTokens.ts:14](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/styles/claudeTokens.ts#L14) diff --git a/frontend/.typedoc/shared/styles/motionTokens/README.md b/frontend/.typedoc/shared/styles/motionTokens/README.md new file mode 100644 index 00000000..abc5f320 --- /dev/null +++ b/frontend/.typedoc/shared/styles/motionTokens/README.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / shared/styles/motionTokens + +# shared/styles/motionTokens + +## Variables + +- [DURATION\_MS](variables/DURATION_MS.md) +- [EASE](variables/EASE.md) +- [pulseKeyframes](variables/pulseKeyframes.md) diff --git a/frontend/.typedoc/shared/styles/motionTokens/variables/DURATION_MS.md b/frontend/.typedoc/shared/styles/motionTokens/variables/DURATION_MS.md new file mode 100644 index 00000000..3f876b5a --- /dev/null +++ b/frontend/.typedoc/shared/styles/motionTokens/variables/DURATION_MS.md @@ -0,0 +1,43 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/styles/motionTokens](../README.md) / DURATION\_MS + +# Variable: DURATION\_MS + +> `const` **DURATION\_MS**: `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/styles/motionTokens.ts:3](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/styles/motionTokens.ts#L3) + +## Type Declaration + +### ambient + +> `readonly` **ambient**: `1500` = `1500` + +1500ms: skeleton pulse + ambient breathing. + +### instant + +> `readonly` **instant**: `60` = `60` + +60ms: hover, subtle press feedback. + +### quick + +> `readonly` **quick**: `140` = `140` + +140ms: row fade, popover/tooltip open, status pill swap. + +### slow + +> `readonly` **slow**: `400` = `400` + +400ms: drawer slide, big layout shifts. + +### standard + +> `readonly` **standard**: `220` = `220` + +220ms: modal open, page transitions, banners. diff --git a/frontend/.typedoc/shared/styles/motionTokens/variables/EASE.md b/frontend/.typedoc/shared/styles/motionTokens/variables/EASE.md new file mode 100644 index 00000000..a46fcfa5 --- /dev/null +++ b/frontend/.typedoc/shared/styles/motionTokens/variables/EASE.md @@ -0,0 +1,37 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/styles/motionTokens](../README.md) / EASE + +# Variable: EASE + +> `const` **EASE**: `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/styles/motionTokens.ts:16](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/styles/motionTokens.ts#L16) + +## Type Declaration + +### inOut + +> `readonly` **inOut**: `"cubic-bezier(0.4, 0, 0.2, 1)"` = `'cubic-bezier(0.4, 0, 0.2, 1)'` + +Material symmetric; for two-way motion. + +### out + +> `readonly` **out**: `"cubic-bezier(0.16, 1, 0.3, 1)"` = `'cubic-bezier(0.16, 1, 0.3, 1)'` + +Linear-style snappy out, gentle settle; good default for things appearing. + +### pulse + +> `readonly` **pulse**: `"cubic-bezier(0.4, 0, 0.6, 1)"` = `'cubic-bezier(0.4, 0, 0.6, 1)'` + +Gentle breathing curve. + +### spring + +> `readonly` **spring**: `"cubic-bezier(0.34, 1.56, 0.64, 1)"` = `'cubic-bezier(0.34, 1.56, 0.64, 1)'` + +Subtle bounce; use sparingly. diff --git a/frontend/.typedoc/shared/styles/motionTokens/variables/pulseKeyframes.md b/frontend/.typedoc/shared/styles/motionTokens/variables/pulseKeyframes.md new file mode 100644 index 00000000..92f73ce2 --- /dev/null +++ b/frontend/.typedoc/shared/styles/motionTokens/variables/pulseKeyframes.md @@ -0,0 +1,35 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/styles/motionTokens](../README.md) / pulseKeyframes + +# Variable: pulseKeyframes + +> `const` **pulseKeyframes**: `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/styles/motionTokens.ts:28](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/styles/motionTokens.ts#L28) + +Shared skeleton/indicator pulse keyframe. + +## Type Declaration + +### @keyframes openswarmPulse + +> **@keyframes openswarmPulse**: `object` + +#### @keyframes openswarmPulse.0%, 100% + +> **0%, 100%**: `object` + +#### @keyframes openswarmPulse.0%, 100%.opacity + +> **opacity**: `number` = `0.5` + +#### @keyframes openswarmPulse.50% + +> **50%**: `object` + +#### @keyframes openswarmPulse.50%.opacity + +> **opacity**: `number` = `0.25` diff --git a/frontend/.typedoc/shared/subscription/checkout/README.md b/frontend/.typedoc/shared/subscription/checkout/README.md new file mode 100644 index 00000000..85c18f04 --- /dev/null +++ b/frontend/.typedoc/shared/subscription/checkout/README.md @@ -0,0 +1,17 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / shared/subscription/checkout + +# shared/subscription/checkout + +## Type Aliases + +- [BillingInterval](type-aliases/BillingInterval.md) +- [CheckoutSource](type-aliases/CheckoutSource.md) +- [OpenSwarmPlan](type-aliases/OpenSwarmPlan.md) + +## Functions + +- [subscribeToPlan](functions/subscribeToPlan.md) diff --git a/frontend/.typedoc/shared/subscription/checkout/functions/subscribeToPlan.md b/frontend/.typedoc/shared/subscription/checkout/functions/subscribeToPlan.md new file mode 100644 index 00000000..c3efccce --- /dev/null +++ b/frontend/.typedoc/shared/subscription/checkout/functions/subscribeToPlan.md @@ -0,0 +1,35 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/subscription/checkout](../README.md) / subscribeToPlan + +# Function: subscribeToPlan() + +> **subscribeToPlan**(`plan`, `billingInterval`, `source`, `opts?`): `Promise`\<`void`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/subscription/checkout.ts:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/subscription/checkout.ts#L12) + +Create a Stripe Checkout session and open the URL externally; used by all subscribe CTAs. + +## Parameters + +### plan + +[`OpenSwarmPlan`](../type-aliases/OpenSwarmPlan.md) + +### billingInterval + +[`BillingInterval`](../type-aliases/BillingInterval.md) + +### source + +[`CheckoutSource`](../type-aliases/CheckoutSource.md) + +### opts? + +`SubscribeOptions` = `{}` + +## Returns + +`Promise`\<`void`\> diff --git a/frontend/.typedoc/shared/subscription/checkout/type-aliases/BillingInterval.md b/frontend/.typedoc/shared/subscription/checkout/type-aliases/BillingInterval.md new file mode 100644 index 00000000..1f5af2fc --- /dev/null +++ b/frontend/.typedoc/shared/subscription/checkout/type-aliases/BillingInterval.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/subscription/checkout](../README.md) / BillingInterval + +# Type Alias: BillingInterval + +> **BillingInterval** = `"monthly"` \| `"annual"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/subscription/checkout.ts:4](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/subscription/checkout.ts#L4) diff --git a/frontend/.typedoc/shared/subscription/checkout/type-aliases/CheckoutSource.md b/frontend/.typedoc/shared/subscription/checkout/type-aliases/CheckoutSource.md new file mode 100644 index 00000000..2f748e07 --- /dev/null +++ b/frontend/.typedoc/shared/subscription/checkout/type-aliases/CheckoutSource.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/subscription/checkout](../README.md) / CheckoutSource + +# Type Alias: CheckoutSource + +> **CheckoutSource** = `"settings"` \| `"onboarding"` \| `"upgrade_cta"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/subscription/checkout.ts:5](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/subscription/checkout.ts#L5) diff --git a/frontend/.typedoc/shared/subscription/checkout/type-aliases/OpenSwarmPlan.md b/frontend/.typedoc/shared/subscription/checkout/type-aliases/OpenSwarmPlan.md new file mode 100644 index 00000000..833b3d5d --- /dev/null +++ b/frontend/.typedoc/shared/subscription/checkout/type-aliases/OpenSwarmPlan.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/subscription/checkout](../README.md) / OpenSwarmPlan + +# Type Alias: OpenSwarmPlan + +> **OpenSwarmPlan** = `"pro"` \| `"pro_plus"` \| `"ultra"` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/subscription/checkout.ts:3](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/subscription/checkout.ts#L3) diff --git a/frontend/.typedoc/shared/useBrowserActivity/README.md b/frontend/.typedoc/shared/useBrowserActivity/README.md new file mode 100644 index 00000000..809c40d5 --- /dev/null +++ b/frontend/.typedoc/shared/useBrowserActivity/README.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../README.md) + +*** + +[open-swarm](../../README.md) / shared/useBrowserActivity + +# shared/useBrowserActivity + +## Interfaces + +- [BrowserActivityState](interfaces/BrowserActivityState.md) + +## Functions + +- [useBrowserActivity](functions/useBrowserActivity.md) diff --git a/frontend/.typedoc/shared/useBrowserActivity/functions/useBrowserActivity.md b/frontend/.typedoc/shared/useBrowserActivity/functions/useBrowserActivity.md new file mode 100644 index 00000000..b1c32f8f --- /dev/null +++ b/frontend/.typedoc/shared/useBrowserActivity/functions/useBrowserActivity.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/useBrowserActivity](../README.md) / useBrowserActivity + +# Function: useBrowserActivity() + +> **useBrowserActivity**(`browserId`): [`BrowserActivityState`](../interfaces/BrowserActivityState.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/useBrowserActivity.ts:23](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/useBrowserActivity.ts#L23) + +## Parameters + +### browserId + +`string` + +## Returns + +[`BrowserActivityState`](../interfaces/BrowserActivityState.md) diff --git a/frontend/.typedoc/shared/useBrowserActivity/interfaces/BrowserActivityState.md b/frontend/.typedoc/shared/useBrowserActivity/interfaces/BrowserActivityState.md new file mode 100644 index 00000000..4bea7706 --- /dev/null +++ b/frontend/.typedoc/shared/useBrowserActivity/interfaces/BrowserActivityState.md @@ -0,0 +1,63 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [shared/useBrowserActivity](../README.md) / BrowserActivityState + +# Interface: BrowserActivityState + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/useBrowserActivity.ts:9](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/useBrowserActivity.ts#L9) + +## Properties + +### action + +> **action**: [`BrowserAction`](../../browserCommandHandler/type-aliases/BrowserAction.md) \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/useBrowserActivity.ts:11](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/useBrowserActivity.ts#L11) + +*** + +### actionSeq + +> **actionSeq**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/useBrowserActivity.ts:16](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/useBrowserActivity.ts#L16) + +Increments per new action; use as React key to restart CSS animations. + +*** + +### active + +> **active**: `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/useBrowserActivity.ts:10](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/useBrowserActivity.ts#L10) + +*** + +### coords + +> **coords**: \{ `xPercent`: `number`; `yPercent`: `number`; \} \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/useBrowserActivity.ts:18](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/useBrowserActivity.ts#L18) + +Viewport-relative click coords (0-1) for positioning the click ripple. + +*** + +### detail + +> **detail**: `string` \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/useBrowserActivity.ts:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/useBrowserActivity.ts#L12) + +*** + +### lastAction + +> **lastAction**: [`BrowserAction`](../../browserCommandHandler/type-aliases/BrowserAction.md) \| `null` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/useBrowserActivity.ts:14](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/useBrowserActivity.ts#L14) + +Action that just completed; stays briefly for exit animations. diff --git a/frontend/.typedoc/shared/ws/WebSocketManager/README.md b/frontend/.typedoc/shared/ws/WebSocketManager/README.md new file mode 100644 index 00000000..545039ac --- /dev/null +++ b/frontend/.typedoc/shared/ws/WebSocketManager/README.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / shared/ws/WebSocketManager + +# shared/ws/WebSocketManager + +## Classes + +- [default](classes/default.md) + +## Variables + +- [dashboardWs](variables/dashboardWs.md) + +## Functions + +- [acquireSessionWs](functions/acquireSessionWs.md) +- [createSessionWs](functions/createSessionWs.md) +- [releaseSessionWs](functions/releaseSessionWs.md) diff --git a/frontend/.typedoc/shared/ws/WebSocketManager/classes/default.md b/frontend/.typedoc/shared/ws/WebSocketManager/classes/default.md new file mode 100644 index 00000000..df8d03c0 --- /dev/null +++ b/frontend/.typedoc/shared/ws/WebSocketManager/classes/default.md @@ -0,0 +1,197 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/ws/WebSocketManager](../README.md) / default + +# Class: default + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/ws/WebSocketManager.ts:88](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/ws/WebSocketManager.ts#L88) + +## Constructors + +### Constructor + +> **new default**(`url`, `options?`): `WebSocketManager` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/ws/WebSocketManager.ts:165](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/ws/WebSocketManager.ts#L165) + +#### Parameters + +##### url + +`string` + +##### options? + +`WSManagerOptions` + +#### Returns + +`WebSocketManager` + +## Accessors + +### connected + +#### Get Signature + +> **get** **connected**(): `boolean` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/ws/WebSocketManager.ts:834](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/ws/WebSocketManager.ts#L834) + +##### Returns + +`boolean` + +## Methods + +### connect() + +> **connect**(): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/ws/WebSocketManager.ts:197](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/ws/WebSocketManager.ts#L197) + +#### Returns + +`void` + +*** + +### disconnect() + +> **disconnect**(): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/ws/WebSocketManager.ts:290](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/ws/WebSocketManager.ts#L290) + +#### Returns + +`void` + +*** + +### on() + +> **on**(`event`, `handler`): () => `boolean` \| `undefined` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/ws/WebSocketManager.ts:826](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/ws/WebSocketManager.ts#L826) + +#### Parameters + +##### event + +`string` + +##### handler + +(`data`) => `void` + +#### Returns + +() => `boolean` \| `undefined` + +*** + +### send() + +> **send**(`event`, `data`): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/ws/WebSocketManager.ts:784](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/ws/WebSocketManager.ts#L784) + +#### Parameters + +##### event + +`string` + +##### data + +`Record`\<`string`, `any`\> + +#### Returns + +`void` + +*** + +### sendApproval() + +> **sendApproval**(`requestId`, `behavior`, `message?`): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/ws/WebSocketManager.ts:814](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/ws/WebSocketManager.ts#L814) + +#### Parameters + +##### requestId + +`string` + +##### behavior + +`"deny"` \| `"allow"` + +##### message? + +`string` + +#### Returns + +`void` + +*** + +### sendMessage() + +> **sendMessage**(`sessionId`, `prompt`, `opts?`): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/ws/WebSocketManager.ts:802](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/ws/WebSocketManager.ts#L802) + +#### Parameters + +##### sessionId + +`string` + +##### prompt + +`string` + +##### opts? + +###### images? + +`object`[] + +###### mode? + +`string` + +###### model? + +`string` + +###### provider? + +`string` + +#### Returns + +`void` + +*** + +### stopAgent() + +> **stopAgent**(`sessionId`): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/ws/WebSocketManager.ts:822](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/ws/WebSocketManager.ts#L822) + +#### Parameters + +##### sessionId + +`string` + +#### Returns + +`void` diff --git a/frontend/.typedoc/shared/ws/WebSocketManager/functions/acquireSessionWs.md b/frontend/.typedoc/shared/ws/WebSocketManager/functions/acquireSessionWs.md new file mode 100644 index 00000000..3b3d6378 --- /dev/null +++ b/frontend/.typedoc/shared/ws/WebSocketManager/functions/acquireSessionWs.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/ws/WebSocketManager](../README.md) / acquireSessionWs + +# Function: acquireSessionWs() + +> **acquireSessionWs**(`sessionId`): [`default`](../classes/default.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/ws/WebSocketManager.ts:873](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/ws/WebSocketManager.ts#L873) + +## Parameters + +### sessionId + +`string` + +## Returns + +[`default`](../classes/default.md) diff --git a/frontend/.typedoc/shared/ws/WebSocketManager/functions/createSessionWs.md b/frontend/.typedoc/shared/ws/WebSocketManager/functions/createSessionWs.md new file mode 100644 index 00000000..5171e257 --- /dev/null +++ b/frontend/.typedoc/shared/ws/WebSocketManager/functions/createSessionWs.md @@ -0,0 +1,21 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/ws/WebSocketManager](../README.md) / createSessionWs + +# Function: createSessionWs() + +> **createSessionWs**(`sessionId`): [`default`](../classes/default.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/ws/WebSocketManager.ts:863](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/ws/WebSocketManager.ts#L863) + +## Parameters + +### sessionId + +`string` + +## Returns + +[`default`](../classes/default.md) diff --git a/frontend/.typedoc/shared/ws/WebSocketManager/functions/releaseSessionWs.md b/frontend/.typedoc/shared/ws/WebSocketManager/functions/releaseSessionWs.md new file mode 100644 index 00000000..47b5b9f6 --- /dev/null +++ b/frontend/.typedoc/shared/ws/WebSocketManager/functions/releaseSessionWs.md @@ -0,0 +1,29 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/ws/WebSocketManager](../README.md) / releaseSessionWs + +# Function: releaseSessionWs() + +> **releaseSessionWs**(`sessionId`, `ws`, `keepAlive`): `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/ws/WebSocketManager.ts:882](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/ws/WebSocketManager.ts#L882) + +## Parameters + +### sessionId + +`string` + +### ws + +[`default`](../classes/default.md) + +### keepAlive + +`boolean` + +## Returns + +`void` diff --git a/frontend/.typedoc/shared/ws/WebSocketManager/variables/dashboardWs.md b/frontend/.typedoc/shared/ws/WebSocketManager/variables/dashboardWs.md new file mode 100644 index 00000000..c597ee17 --- /dev/null +++ b/frontend/.typedoc/shared/ws/WebSocketManager/variables/dashboardWs.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [shared/ws/WebSocketManager](../README.md) / dashboardWs + +# Variable: dashboardWs + +> `const` **dashboardWs**: [`default`](../classes/default.md) + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/shared/ws/WebSocketManager.ts:841](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/shared/ws/WebSocketManager.ts#L841) diff --git a/frontend/.typedoc/types/css-modules/*.module.css/README.md b/frontend/.typedoc/types/css-modules/*.module.css/README.md new file mode 100644 index 00000000..2b8a4b8e --- /dev/null +++ b/frontend/.typedoc/types/css-modules/*.module.css/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [types/css-modules](../README.md) / \*.module.css + +# \*.module.css + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/types/css-modules/*.module.css/variables/default.md b/frontend/.typedoc/types/css-modules/*.module.css/variables/default.md new file mode 100644 index 00000000..9843c873 --- /dev/null +++ b/frontend/.typedoc/types/css-modules/*.module.css/variables/default.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [types/css-modules](../../README.md) / [\*.module.css](../README.md) / default + +# Variable: default + +> `const` **default**: `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/types/css-modules.d.ts:2](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/types/css-modules.d.ts#L2) + +## Index Signature + +\[`key`: `string`\]: `string` diff --git a/frontend/.typedoc/types/css-modules/*.module.sass/README.md b/frontend/.typedoc/types/css-modules/*.module.sass/README.md new file mode 100644 index 00000000..b1b377c7 --- /dev/null +++ b/frontend/.typedoc/types/css-modules/*.module.sass/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [types/css-modules](../README.md) / \*.module.sass + +# \*.module.sass + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/types/css-modules/*.module.sass/variables/default.md b/frontend/.typedoc/types/css-modules/*.module.sass/variables/default.md new file mode 100644 index 00000000..b4cc2292 --- /dev/null +++ b/frontend/.typedoc/types/css-modules/*.module.sass/variables/default.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [types/css-modules](../../README.md) / [\*.module.sass](../README.md) / default + +# Variable: default + +> `const` **default**: `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/types/css-modules.d.ts:12](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/types/css-modules.d.ts#L12) + +## Index Signature + +\[`key`: `string`\]: `string` diff --git a/frontend/.typedoc/types/css-modules/*.module.scss/README.md b/frontend/.typedoc/types/css-modules/*.module.scss/README.md new file mode 100644 index 00000000..6cc096ee --- /dev/null +++ b/frontend/.typedoc/types/css-modules/*.module.scss/README.md @@ -0,0 +1,11 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [types/css-modules](../README.md) / \*.module.scss + +# \*.module.scss + +## Variables + +- [default](variables/default.md) diff --git a/frontend/.typedoc/types/css-modules/*.module.scss/variables/default.md b/frontend/.typedoc/types/css-modules/*.module.scss/variables/default.md new file mode 100644 index 00000000..b0b17fb5 --- /dev/null +++ b/frontend/.typedoc/types/css-modules/*.module.scss/variables/default.md @@ -0,0 +1,15 @@ +[**open-swarm**](../../../../README.md) + +*** + +[open-swarm](../../../../README.md) / [types/css-modules](../../README.md) / [\*.module.scss](../README.md) / default + +# Variable: default + +> `const` **default**: `object` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/types/css-modules.d.ts:7](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/types/css-modules.d.ts#L7) + +## Index Signature + +\[`key`: `string`\]: `string` diff --git a/frontend/.typedoc/types/css-modules/README.md b/frontend/.typedoc/types/css-modules/README.md new file mode 100644 index 00000000..d25bf425 --- /dev/null +++ b/frontend/.typedoc/types/css-modules/README.md @@ -0,0 +1,13 @@ +[**open-swarm**](../../README.md) + +*** + +[open-swarm](../../README.md) / types/css-modules + +# types/css-modules + +## Modules + +- [\*.module.css](*.module.css/README.md) +- [\*.module.sass](*.module.sass/README.md) +- [\*.module.scss](*.module.scss/README.md) diff --git a/frontend/.typedoc/types/electron/README.md b/frontend/.typedoc/types/electron/README.md new file mode 100644 index 00000000..31eee72e --- /dev/null +++ b/frontend/.typedoc/types/electron/README.md @@ -0,0 +1,22 @@ +[**open-swarm**](../../README.md) + +*** + +[open-swarm](../../README.md) / types/electron + +# types/electron + +## Namespaces + +- [~~JSX~~](namespaces/JSX/README.md) + +## Interfaces + +- [OpenSwarmAPI](interfaces/OpenSwarmAPI.md) +- [OpenSwarmDownloadProgress](interfaces/OpenSwarmDownloadProgress.md) +- [OpenSwarmUpdateInfo](interfaces/OpenSwarmUpdateInfo.md) +- [Window](interfaces/Window.md) + +## Variables + +- [Window](variables/Window.md) diff --git a/frontend/.typedoc/types/electron/interfaces/OpenSwarmAPI.md b/frontend/.typedoc/types/electron/interfaces/OpenSwarmAPI.md new file mode 100644 index 00000000..f8adff7e --- /dev/null +++ b/frontend/.typedoc/types/electron/interfaces/OpenSwarmAPI.md @@ -0,0 +1,279 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [types/electron](../README.md) / OpenSwarmAPI + +# Interface: OpenSwarmAPI + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/types/electron.d.ts:34](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/types/electron.d.ts#L34) + +## Properties + +### checkForUpdates + +> **checkForUpdates**: () => `Promise`\<\{ `error?`: `string`; `success`: `boolean`; `version?`: `string`; \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/types/electron.d.ts:41](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/types/electron.d.ts#L41) + +#### Returns + +`Promise`\<\{ `error?`: `string`; `success`: `boolean`; `version?`: `string`; \}\> + +*** + +### downloadUpdate + +> **downloadUpdate**: () => `Promise`\<\{ `error?`: `string`; `success`: `boolean`; \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/types/electron.d.ts:42](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/types/electron.d.ts#L42) + +#### Returns + +`Promise`\<\{ `error?`: `string`; `success`: `boolean`; \}\> + +*** + +### getAppVersion + +> **getAppVersion**: () => `Promise`\<`string`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/types/electron.d.ts:37](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/types/electron.d.ts#L37) + +#### Returns + +`Promise`\<`string`\> + +*** + +### getBackendPort + +> **getBackendPort**: () => `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/types/electron.d.ts:35](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/types/electron.d.ts#L35) + +#### Returns + +`number` + +*** + +### getBuildInfo + +> **getBuildInfo**: () => `Promise`\<\{ `builtAt`: `string` \| `null`; `channel`: `string`; `sha`: `string`; `shortSha`: `string`; \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/types/electron.d.ts:38](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/types/electron.d.ts#L38) + +#### Returns + +`Promise`\<\{ `builtAt`: `string` \| `null`; `channel`: `string`; `sha`: `string`; `shortSha`: `string`; \}\> + +*** + +### getCrashRecoveryInfo? + +> `optional` **getCrashRecoveryInfo?**: () => `Promise`\<\{ `parent_pid`: `number`; `ts`: `number`; `uptime_ms`: `number`; \} \| `null`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/types/electron.d.ts:40](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/types/electron.d.ts#L40) + +#### Returns + +`Promise`\<\{ `parent_pid`: `number`; `ts`: `number`; `uptime_ms`: `number`; \} \| `null`\> + +*** + +### getUpdateStatus + +> **getUpdateStatus**: () => `Promise`\<\{ `error`: `string` \| `null`; `info`: `any`; `status`: `string`; \}\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/types/electron.d.ts:39](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/types/electron.d.ts#L39) + +#### Returns + +`Promise`\<\{ `error`: `string` \| `null`; `info`: `any`; `status`: `string`; \}\> + +*** + +### getWebviewPreloadPath + +> **getWebviewPreloadPath**: () => `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/types/electron.d.ts:36](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/types/electron.d.ts#L36) + +#### Returns + +`string` + +*** + +### installUpdate + +> **installUpdate**: () => `Promise`\<`void`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/types/electron.d.ts:43](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/types/electron.d.ts#L43) + +#### Returns + +`Promise`\<`void`\> + +*** + +### onAuthUrl? + +> `optional` **onAuthUrl?**: (`cb`) => () => `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/types/electron.d.ts:51](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/types/electron.d.ts#L51) + +#### Parameters + +##### cb + +(`url`) => `void` + +#### Returns + +() => `void` + +*** + +### onDownloadProgress + +> **onDownloadProgress**: (`cb`) => () => `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/types/electron.d.ts:46](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/types/electron.d.ts#L46) + +#### Parameters + +##### cb + +(`progress`) => `void` + +#### Returns + +() => `void` + +*** + +### onOauthClaim? + +> `optional` **onOauthClaim?**: (`cb`) => () => `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/types/electron.d.ts:52](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/types/electron.d.ts#L52) + +#### Parameters + +##### cb + +(`url`) => `void` + +#### Returns + +() => `void` + +*** + +### onUpdateAvailable + +> **onUpdateAvailable**: (`cb`) => () => `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/types/electron.d.ts:44](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/types/electron.d.ts#L44) + +#### Parameters + +##### cb + +(`info`) => `void` + +#### Returns + +() => `void` + +*** + +### onUpdateDownloaded + +> **onUpdateDownloaded**: (`cb`) => () => `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/types/electron.d.ts:47](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/types/electron.d.ts#L47) + +#### Parameters + +##### cb + +(`info`) => `void` + +#### Returns + +() => `void` + +*** + +### onUpdateError + +> **onUpdateError**: (`cb`) => () => `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/types/electron.d.ts:48](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/types/electron.d.ts#L48) + +#### Parameters + +##### cb + +(`message`) => `void` + +#### Returns + +() => `void` + +*** + +### onUpdateNotAvailable + +> **onUpdateNotAvailable**: (`cb`) => () => `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/types/electron.d.ts:45](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/types/electron.d.ts#L45) + +#### Parameters + +##### cb + +(`info`) => `void` + +#### Returns + +() => `void` + +*** + +### onWebviewNewWindow + +> **onWebviewNewWindow**: (`cb`) => () => `void` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/types/electron.d.ts:49](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/types/electron.d.ts#L49) + +#### Parameters + +##### cb + +(`url`, `webContentsId`) => `void` + +#### Returns + +() => `void` + +*** + +### openExternal + +> **openExternal**: (`url`) => `Promise`\<`void`\> + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/types/electron.d.ts:50](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/types/electron.d.ts#L50) + +#### Parameters + +##### url + +`string` + +#### Returns + +`Promise`\<`void`\> diff --git a/frontend/.typedoc/types/electron/interfaces/OpenSwarmDownloadProgress.md b/frontend/.typedoc/types/electron/interfaces/OpenSwarmDownloadProgress.md new file mode 100644 index 00000000..ad5f362b --- /dev/null +++ b/frontend/.typedoc/types/electron/interfaces/OpenSwarmDownloadProgress.md @@ -0,0 +1,41 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [types/electron](../README.md) / OpenSwarmDownloadProgress + +# Interface: OpenSwarmDownloadProgress + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/types/electron.d.ts:27](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/types/electron.d.ts#L27) + +## Properties + +### bytesPerSecond + +> **bytesPerSecond**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/types/electron.d.ts:28](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/types/electron.d.ts#L28) + +*** + +### percent + +> **percent**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/types/electron.d.ts:29](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/types/electron.d.ts#L29) + +*** + +### total + +> **total**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/types/electron.d.ts:31](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/types/electron.d.ts#L31) + +*** + +### transferred + +> **transferred**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/types/electron.d.ts:30](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/types/electron.d.ts#L30) diff --git a/frontend/.typedoc/types/electron/interfaces/OpenSwarmUpdateInfo.md b/frontend/.typedoc/types/electron/interfaces/OpenSwarmUpdateInfo.md new file mode 100644 index 00000000..9ae22ff6 --- /dev/null +++ b/frontend/.typedoc/types/electron/interfaces/OpenSwarmUpdateInfo.md @@ -0,0 +1,33 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [types/electron](../README.md) / OpenSwarmUpdateInfo + +# Interface: OpenSwarmUpdateInfo + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/types/electron.d.ts:21](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/types/electron.d.ts#L21) + +## Properties + +### releaseDate? + +> `optional` **releaseDate?**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/types/electron.d.ts:23](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/types/electron.d.ts#L23) + +*** + +### releaseNotes? + +> `optional` **releaseNotes?**: `string` \| `object`[] + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/types/electron.d.ts:24](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/types/electron.d.ts#L24) + +*** + +### version + +> **version**: `string` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/types/electron.d.ts:22](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/types/electron.d.ts#L22) diff --git a/frontend/.typedoc/types/electron/interfaces/Window.md b/frontend/.typedoc/types/electron/interfaces/Window.md new file mode 100644 index 00000000..73ae7c7e --- /dev/null +++ b/frontend/.typedoc/types/electron/interfaces/Window.md @@ -0,0 +1,3847 @@ +[**open-swarm**](../../../README.md) + +*** + +[open-swarm](../../../README.md) / [types/electron](../README.md) / Window + +# Interface: Window + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:41172 + +The **`Window`** interface represents a window containing a DOM document; the document property points to the DOM document loaded in that window. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window) + +## Extends + +- `EventTarget`.`AnimationFrameProvider`.`GlobalEventHandlers`.`WindowEventHandlers`.`WindowLocalStorage`.`WindowOrWorkerGlobalScope`.`WindowSessionStorage` + +## Indexable + +> \[`index`: `number`\]: `Window` + +## Properties + +### \_\_FLIGHT\_DATA + +> **\_\_FLIGHT\_DATA**: `any`[] + +Defined in: Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/node\_modules/react-router/dist/development/dom-export.d.mts:129 + +*** + +### \_\_OPENSWARM\_PORT\_\_ + +> **\_\_OPENSWARM\_PORT\_\_**: `number` + +Defined in: [Desktop/openswarm-ai/all-things-analytics/openswarm/frontend/src/types/electron.d.ts:56](https://github.com/openswarm-ai/openswarm/blob/019a71c26d428a6c93dd027186193f1e068bd25e/frontend/src/types/electron.d.ts#L56) + +*** + +### caches + +> `readonly` **caches**: `CacheStorage` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:41712 + +Available only in secure contexts. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/caches) + +#### Inherited from + +`WindowOrWorkerGlobalScope.caches` + +*** + +### ~~clientInformation~~ + +> `readonly` **clientInformation**: `Navigator` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:41178 + +#### Deprecated + +This is a legacy alias of `navigator`. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/navigator) + +*** + +### closed + +> `readonly` **closed**: `boolean` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:41184 + +The **`Window.closed`** read-only property indicates whether the referenced window is closed or not. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/closed) + +*** + +### cookieStore + +> `readonly` **cookieStore**: `CookieStore` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:41190 + +The **`cookieStore`** read-only property of the Window interface returns a reference to the CookieStore object for the current document context. This is an entry point for the Cookie Store API. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/cookieStore) + +*** + +### crossOriginIsolated + +> `readonly` **crossOriginIsolated**: `boolean` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:41714 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/crossOriginIsolated) + +#### Inherited from + +`WindowOrWorkerGlobalScope.crossOriginIsolated` + +*** + +### crypto + +> `readonly` **crypto**: `Crypto` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:41716 + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/crypto) + +#### Inherited from + +`WindowOrWorkerGlobalScope.crypto` + +*** + +### customElements + +> `readonly` **customElements**: `CustomElementRegistry` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:41196 + +The **`customElements`** read-only property of the Window interface returns a reference to the CustomElementRegistry object, which can be used to register new custom elements and get information about previously registered custom elements. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/customElements) + +*** + +### devicePixelRatio + +> `readonly` **devicePixelRatio**: `number` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:41202 + +The **`devicePixelRatio`** of Window interface returns the ratio of the resolution in physical pixels to the resolution in CSS pixels for the current display device. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/devicePixelRatio) + +*** + +### document + +> `readonly` **document**: `Document` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:41208 + +**`window.document`** returns a reference to the document contained in the window. + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/document) + +*** + +### ~~event~~ + +> `readonly` **event**: `Event` \| `undefined` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:41215 + +The read-only Window property **`event`** returns the Event which is currently being handled by the site's code. Outside the context of an event handler, the value is always undefined. + +#### Deprecated + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/event) + +*** + +### ~~external~~ + +> `readonly` **external**: `External` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:41222 + +The **`external`** property of the Window API returns an instance of the External interface, which was intended to contain functions related to adding external search providers to the browser. However, this is now deprecated, and the contained methods are now dummy functions that do nothing as per spec. + +#### Deprecated + +[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/external) + +*** + +### frameElement + +> `readonly` **frameElement**: `Element` \| `null` + +Defined in: .npm/\_npx/940582f83630445a/node\_modules/typescript/lib/lib.dom.d.ts:41228 + +The **`Window.frameElement`** property returns the element (such as