Implements Phases 1-8 of the TFTSR implementation plan. Rust backend (Tauri 2.x, src-tauri/): - Multi-provider AI: OpenAI-compatible, Anthropic, Gemini, Mistral, Ollama - PII detection engine: 11 regex patterns with overlap resolution - SQLCipher AES-256 encrypted database with 10 versioned migrations - 28 Tauri IPC commands for triage, analysis, document, and system ops - Ollama: hardware probe, model recommendations, pull/delete with events - RCA and blameless post-mortem Markdown document generators - PDF export via printpdf - Audit log: SHA-256 hash of every external data send - Integration stubs for Confluence, ServiceNow, Azure DevOps (v0.2) Frontend (React 18 + TypeScript + Vite, src/): - 9 pages: full triage workflow NewIssue→LogUpload→Triage→Resolution→RCA→Postmortem→History+Settings - 7 components: ChatWindow, TriageProgress, PiiDiffViewer, DocEditor, HardwareReport, ModelSelector, UI primitives - 3 Zustand stores: session, settings (persisted), history - Type-safe tauriCommands.ts matching Rust backend types exactly - 8 IT domain system prompts (Linux, Windows, Network, K8s, DB, Virt, HW, Obs) DevOps: - .woodpecker/test.yml: rustfmt, clippy, cargo test, tsc, vitest on every push - .woodpecker/release.yml: linux/amd64 + linux/arm64 builds, Gogs release upload Verified: - cargo check: zero errors - tsc --noEmit: zero errors - vitest run: 13/13 unit tests passing Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
56 lines
2.5 KiB
TypeScript
56 lines
2.5 KiB
TypeScript
import type { local } from 'webdriver';
|
|
import { SessionManager } from './session.js';
|
|
export declare function getContextManager(browser: WebdriverIO.Browser): ContextManager;
|
|
export type FlatContextTree = Omit<local.BrowsingContextInfo, 'children'> & {
|
|
children: string[];
|
|
};
|
|
/**
|
|
* This class is responsible for managing context in a WebDriver session. Many BiDi commands
|
|
* require to be executed in a specific context. This class is responsible for keeping track
|
|
* of the current context and providing the current context the user is in.
|
|
*/
|
|
export declare class ContextManager extends SessionManager {
|
|
#private;
|
|
constructor(browser: WebdriverIO.Browser);
|
|
removeListeners(): void;
|
|
/**
|
|
* set context at the start of the session
|
|
*/
|
|
initialize(): Promise<string>;
|
|
setCurrentContext(context: string): void;
|
|
getCurrentContext(): Promise<string>;
|
|
/**
|
|
* Sets the cached current window handle value.
|
|
* @param handle current window handle to set
|
|
*/
|
|
setCurrentWindowHandle(handle?: string): void;
|
|
/**
|
|
* Returns the cached window handle.
|
|
*
|
|
* @returns the current window handle, or undefined if the current window is closed.
|
|
*/
|
|
getCurrentWindowHandle(): string | undefined;
|
|
get isNativeContext(): boolean;
|
|
get mobileContext(): string | undefined;
|
|
/**
|
|
* Get the flat context tree for the current session
|
|
* @returns a flat list of all contexts in the current session
|
|
*/
|
|
getFlatContextTree(): Promise<Record<string, FlatContextTree>>;
|
|
/**
|
|
* Find the parent context of a given context id
|
|
* @param contextId the context id you want to find the parent of
|
|
* @param contexts the list of contexts to search through returned from `browsingContextGetTree`
|
|
* @returns the parent context of the context with the given id
|
|
*/
|
|
findParentContext(contextId: string, contexts: local.BrowsingContextInfoList): local.BrowsingContextInfo | undefined;
|
|
/**
|
|
* Find a context by URL or ID
|
|
* @param urlOrId The URL or ID of the context to find
|
|
* @param contexts The list of contexts to search through returned from `browsingContextGetTree`
|
|
* @param matcherType The type of matcher to use to find the context
|
|
* @returns The context with the given URL or ID
|
|
*/
|
|
findContext(urlOrId: string, contexts: local.BrowsingContextInfoList | null, matcherType: 'byUrl' | 'byUrlContaining' | 'byContextId'): local.BrowsingContextInfo | undefined;
|
|
}
|
|
//# sourceMappingURL=context.d.ts.map
|