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>
57 lines
2.9 KiB
TypeScript
57 lines
2.9 KiB
TypeScript
import type { Cookie } from '@wdio/protocols';
|
||
/**
|
||
*
|
||
* Sets one or more [cookies](https://w3c.github.io/webdriver/#cookies) for the current page. Make sure you are
|
||
* on the page that should receive the cookie. You can't set a cookie for an arbitrary page without
|
||
* being on that page.
|
||
*
|
||
* <example>
|
||
:setCookies.js
|
||
it('should set a cookie for the page', async () => {
|
||
await browser.url('/')
|
||
|
||
// set a single cookie
|
||
await browser.setCookies({
|
||
name: 'test1',
|
||
value: 'one'
|
||
// The below options are optional
|
||
// path: '/foo', // The cookie path. Defaults to "/"
|
||
// domain: '.example.com', // The domain the cookie is visible to. Defaults to the current browsing context’s active document’s URL domain
|
||
// secure: true, // Whether the cookie is a secure cookie. Defaults to false
|
||
// httpOnly: true, // Whether the cookie is an HTTP only cookie. Defaults to false
|
||
// expiry: 1551393875 // When the cookie expires, specified in seconds since Unix Epoch
|
||
})
|
||
|
||
// set multiple cookies
|
||
await browser.setCookies([
|
||
{name: 'test2', value: 'two'},
|
||
{name: 'test3', value: 'three'}
|
||
])
|
||
|
||
const cookies = await browser.getCookies()
|
||
console.log(cookies);
|
||
// outputs:
|
||
// [
|
||
// {name: 'test1', value: 'one', domain: 'www.example.com'},
|
||
// {name: 'test2', value: 'two', domain: 'www.example.com'},
|
||
// {name: 'test3', value: 'three', domain: 'www.example.com'}
|
||
// ]
|
||
});
|
||
* </example>
|
||
*
|
||
* @alias browser.setCookies
|
||
* @param {`Array<WebDriverCookie>|WebDriverCookie`} cookie cookie object or object array.
|
||
* @param {String=} cookie.name The name of the cookie.
|
||
* @param {String=} cookie.value The cookie value.
|
||
* @param {String=} cookie.path The cookie path. Defaults to "/" if omitted when adding a cookie.
|
||
* @param {String=} cookie.domain The domain the cookie is visible to. Defaults to the current browsing context’s active document’s URL domain if omitted when adding a cookie.
|
||
* @param {Boolean=} cookie.secure Whether the cookie is a secure cookie. Defaults to false if omitted when adding a cookie.
|
||
* @param {Boolean=} cookie.httpOnly Whether the cookie is an HTTP only cookie. Defaults to false if omitted when adding a cookie.
|
||
* @param {Number=} cookie.expiry When the cookie expires, specified in seconds since Unix Epoch. Must not be set if omitted when adding a cookie.
|
||
* @param {String=} cookie.sameSite Whether the cookie applies to a SameSite policy. Defaults to None if omitted when adding a cookie. Can be set to either "Lax" or "Strict".
|
||
* @uses protocol/addCookie
|
||
* @type cookie
|
||
*
|
||
*/
|
||
export declare function setCookies(this: WebdriverIO.Browser, cookieObjs: Cookie | Cookie[]): Promise<void>;
|
||
//# sourceMappingURL=setCookies.d.ts.map
|