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>
60 lines
2.4 KiB
TypeScript
60 lines
2.4 KiB
TypeScript
/// <reference types="node" />
|
|
/// <reference types="node" />
|
|
/// <reference types="node" />
|
|
/// <reference types="node" />
|
|
import * as net from 'net';
|
|
import * as http from 'http';
|
|
import { Readable } from 'stream';
|
|
import { URL } from 'url';
|
|
import { Agent, AgentConnectOpts } from 'agent-base';
|
|
import type { HttpProxyAgentOptions } from 'http-proxy-agent';
|
|
import type { HttpsProxyAgentOptions } from 'https-proxy-agent';
|
|
import type { SocksProxyAgentOptions } from 'socks-proxy-agent';
|
|
import { protocols as gProtocols, ProtocolOpts as GetUriOptions } from 'get-uri';
|
|
import { FindProxyForURL, PacResolverOptions } from 'pac-resolver';
|
|
type Protocols = keyof typeof gProtocols;
|
|
type Protocol<T> = T extends `pac+${infer P}:${infer _}` ? P : T extends `${infer P}:${infer _}` ? P : never;
|
|
export type PacProxyAgentOptions<T> = http.AgentOptions & PacResolverOptions & GetUriOptions<`${Protocol<T>}:`> & HttpProxyAgentOptions<''> & HttpsProxyAgentOptions<''> & SocksProxyAgentOptions & {
|
|
fallbackToDirect?: boolean;
|
|
};
|
|
/**
|
|
* The `PacProxyAgent` class.
|
|
*
|
|
* A few different "protocol" modes are supported (supported protocols are
|
|
* backed by the `get-uri` module):
|
|
*
|
|
* - "pac+data", "data" - refers to an embedded "data:" URI
|
|
* - "pac+file", "file" - refers to a local file
|
|
* - "pac+ftp", "ftp" - refers to a file located on an FTP server
|
|
* - "pac+http", "http" - refers to an HTTP endpoint
|
|
* - "pac+https", "https" - refers to an HTTPS endpoint
|
|
*/
|
|
export declare class PacProxyAgent<Uri extends string> extends Agent {
|
|
static readonly protocols: `pac+${Protocols}`[];
|
|
uri: URL;
|
|
opts: PacProxyAgentOptions<Uri>;
|
|
cache?: Readable;
|
|
resolver?: FindProxyForURL;
|
|
resolverHash: string;
|
|
resolverPromise?: Promise<FindProxyForURL>;
|
|
constructor(uri: Uri | URL, opts?: PacProxyAgentOptions<Uri>);
|
|
private clearResolverPromise;
|
|
/**
|
|
* Loads the PAC proxy file from the source if necessary, and returns
|
|
* a generated `FindProxyForURL()` resolver function to use.
|
|
*/
|
|
getResolver(): Promise<FindProxyForURL>;
|
|
private loadResolver;
|
|
/**
|
|
* Loads the contents of the PAC proxy file.
|
|
*
|
|
* @api private
|
|
*/
|
|
private loadPacFile;
|
|
/**
|
|
* Called when the node-core HTTP client library is creating a new HTTP request.
|
|
*/
|
|
connect(req: http.ClientRequest, opts: AgentConnectOpts): Promise<http.Agent | net.Socket>;
|
|
}
|
|
export {};
|
|
//# sourceMappingURL=index.d.ts.map
|