Detects when user changes same config setting 3+ times within 24 hours. Shows non-intrusive prompt offering help with guided calibration flow. Guided calibration features: - Test for false positives (walk around room) - Test for missed motion (sit still) - Suggest optimal value based on diurnal baseline SNR and link health - Apply suggested value button Files: - dashboard/js/proactive.js: Complete implementation with localStorage tracking Acceptance: - Help prompt fires after 3+ changes in 24h - Calibration flow tests both directions - Suggests value based on system data - Apply button works
32 lines
941 B
TypeScript
32 lines
941 B
TypeScript
/// <reference types="node" />
|
|
import net from 'net';
|
|
import { Agent, ClientRequest, RequestOptions } from 'agent-base';
|
|
import { HttpProxyAgentOptions } from '.';
|
|
interface HttpProxyAgentClientRequest extends ClientRequest {
|
|
path: string;
|
|
output?: string[];
|
|
outputData?: {
|
|
data: string;
|
|
}[];
|
|
_header?: string | null;
|
|
_implicitHeader(): void;
|
|
}
|
|
/**
|
|
* The `HttpProxyAgent` implements an HTTP Agent subclass that connects
|
|
* to the specified "HTTP proxy server" in order to proxy HTTP requests.
|
|
*
|
|
* @api public
|
|
*/
|
|
export default class HttpProxyAgent extends Agent {
|
|
private secureProxy;
|
|
private proxy;
|
|
constructor(_opts: string | HttpProxyAgentOptions);
|
|
/**
|
|
* Called when the node-core HTTP client library is creating a
|
|
* new HTTP request.
|
|
*
|
|
* @api protected
|
|
*/
|
|
callback(req: HttpProxyAgentClientRequest, opts: RequestOptions): Promise<net.Socket>;
|
|
}
|
|
export {};
|