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
3.1 KiB
TypeScript
85 lines
3.1 KiB
TypeScript
import type { InternalOptions } from './options.js';
|
|
import type { AnyNode, Document, ParentNode } from 'domhandler';
|
|
import type { BasicAcceptedElems } from './types.js';
|
|
import * as Attributes from './api/attributes.js';
|
|
import * as Traversing from './api/traversing.js';
|
|
import * as Manipulation from './api/manipulation.js';
|
|
import * as Css from './api/css.js';
|
|
import * as Forms from './api/forms.js';
|
|
import * as Extract from './api/extract.js';
|
|
type MethodsType = typeof Attributes & typeof Traversing & typeof Manipulation & typeof Css & typeof Forms & typeof Extract;
|
|
/**
|
|
* The cheerio class is the central class of the library. It wraps a set of
|
|
* elements and provides an API for traversing, modifying, and interacting with
|
|
* the set.
|
|
*
|
|
* Loading a document will return the Cheerio class bound to the root element of
|
|
* the document. The class will be instantiated when querying the document (when
|
|
* calling `$('selector')`).
|
|
*
|
|
* @example This is the HTML markup we will be using in all of the API examples:
|
|
*
|
|
* ```html
|
|
* <ul id="fruits">
|
|
* <li class="apple">Apple</li>
|
|
* <li class="orange">Orange</li>
|
|
* <li class="pear">Pear</li>
|
|
* </ul>
|
|
* ```
|
|
*/
|
|
export declare abstract class Cheerio<T> implements ArrayLike<T> {
|
|
length: number;
|
|
[index: number]: T;
|
|
options: InternalOptions;
|
|
/**
|
|
* The root of the document. Can be set by using the `root` argument of the
|
|
* constructor.
|
|
*
|
|
* @private
|
|
*/
|
|
_root: Cheerio<Document> | null;
|
|
/**
|
|
* Instance of cheerio. Methods are specified in the modules. Usage of this
|
|
* constructor is not recommended. Please use `$.load` instead.
|
|
*
|
|
* @private
|
|
* @param elements - The new selection.
|
|
* @param root - Sets the root node.
|
|
* @param options - Options for the instance.
|
|
*/
|
|
constructor(elements: ArrayLike<T> | undefined, root: Cheerio<Document> | null, options: InternalOptions);
|
|
prevObject: Cheerio<any> | undefined;
|
|
/**
|
|
* Make a cheerio object.
|
|
*
|
|
* @private
|
|
* @param dom - The contents of the new object.
|
|
* @param context - The context of the new object.
|
|
* @returns The new cheerio object.
|
|
*/
|
|
abstract _make<T>(dom: ArrayLike<T> | T | string, context?: BasicAcceptedElems<AnyNode>): Cheerio<T>;
|
|
/**
|
|
* Parses some content.
|
|
*
|
|
* @private
|
|
* @param content - Content to parse.
|
|
* @param options - Options for parsing.
|
|
* @param isDocument - Allows parser to be switched to fragment mode.
|
|
* @returns A document containing the `content`.
|
|
*/
|
|
abstract _parse(content: string | Document | AnyNode | AnyNode[] | Buffer, options: InternalOptions, isDocument: boolean, context: ParentNode | null): Document;
|
|
/**
|
|
* Render an element or a set of elements.
|
|
*
|
|
* @private
|
|
* @param dom - DOM to render.
|
|
* @returns The rendered DOM.
|
|
*/
|
|
abstract _render(dom: AnyNode | ArrayLike<AnyNode>): string;
|
|
}
|
|
export interface Cheerio<T> extends MethodsType, Iterable<T> {
|
|
cheerio: '[cheerio object]';
|
|
splice: typeof Array.prototype.splice;
|
|
}
|
|
export {};
|
|
//# sourceMappingURL=cheerio.d.ts.map
|