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>
85 lines
2.5 KiB
TypeScript
85 lines
2.5 KiB
TypeScript
import type { Options, Capabilities } from '@wdio/types';
|
|
import type { RestoreMap } from './types.js';
|
|
export declare const WDIO_DEFAULTS: Options.Definition<Capabilities.WebdriverIOConfig>;
|
|
export declare const W3C_SELECTOR_STRATEGIES: string[];
|
|
export declare const DRIVER_DEFAULT_ENDPOINT: {
|
|
method: string;
|
|
host: string;
|
|
port: number;
|
|
path: string;
|
|
};
|
|
export declare const FF_REMOTE_DEBUG_ARG = "-remote-debugging-port";
|
|
export declare const DEEP_SELECTOR = ">>>";
|
|
export declare const ARIA_SELECTOR = "aria/";
|
|
export declare const ERROR_REASON: string[];
|
|
/**
|
|
* store all preload scripts in a map (per instance) so that we can easily remove them
|
|
*/
|
|
export declare const restoreFunctions: Map<WebdriverIO.Browser, RestoreMap>;
|
|
/**
|
|
* Special Characters
|
|
*/
|
|
export declare const Key: {
|
|
/**
|
|
* Special control key that works cross browser for Mac, where it's the command key, and for
|
|
* Windows or Linux, where it is the control key.
|
|
*/
|
|
readonly Ctrl: "WDIO_CONTROL";
|
|
readonly NULL: "";
|
|
readonly Cancel: "";
|
|
readonly Help: "";
|
|
readonly Backspace: "";
|
|
readonly Tab: "";
|
|
readonly Clear: "";
|
|
readonly Return: "";
|
|
readonly Enter: "";
|
|
readonly Shift: "";
|
|
readonly Control: "";
|
|
readonly Alt: "";
|
|
readonly Pause: "";
|
|
readonly Escape: "";
|
|
readonly Space: "";
|
|
readonly PageUp: "";
|
|
readonly PageDown: "";
|
|
readonly End: "";
|
|
readonly Home: "";
|
|
readonly ArrowLeft: "";
|
|
readonly ArrowUp: "";
|
|
readonly ArrowRight: "";
|
|
readonly ArrowDown: "";
|
|
readonly Insert: "";
|
|
readonly Delete: "";
|
|
readonly Semicolon: "";
|
|
readonly Equals: "";
|
|
readonly Numpad0: "";
|
|
readonly Numpad1: "";
|
|
readonly Numpad2: "";
|
|
readonly Numpad3: "";
|
|
readonly Numpad4: "";
|
|
readonly Numpad5: "";
|
|
readonly Numpad6: "";
|
|
readonly Numpad7: "";
|
|
readonly Numpad8: "";
|
|
readonly Numpad9: "";
|
|
readonly Multiply: "";
|
|
readonly Add: "";
|
|
readonly Separator: "";
|
|
readonly Subtract: "";
|
|
readonly Decimal: "";
|
|
readonly Divide: "";
|
|
readonly F1: "";
|
|
readonly F2: "";
|
|
readonly F3: "";
|
|
readonly F4: "";
|
|
readonly F5: "";
|
|
readonly F6: "";
|
|
readonly F7: "";
|
|
readonly F8: "";
|
|
readonly F9: "";
|
|
readonly F10: "";
|
|
readonly F11: "";
|
|
readonly F12: "";
|
|
readonly Command: "";
|
|
readonly ZenkakuHankaku: "";
|
|
};
|
|
//# sourceMappingURL=constants.d.ts.map
|