@wenathlan/extension 1.1.45 → 1.1.47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -4
- package/dist/cdpbus.d.ts +104 -0
- package/dist/cdpbus.d.ts.map +1 -0
- package/dist/index.d.ts +3 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1065 -9
- package/dist/index.js.map +4 -4
- package/dist/memory.d.ts +88 -1
- package/dist/memory.d.ts.map +1 -1
- package/dist/policy.d.ts +34 -1
- package/dist/policy.d.ts.map +1 -1
- package/dist/profilers.d.ts +167 -0
- package/dist/profilers.d.ts.map +1 -0
- package/dist/protocol.d.ts +65 -2
- package/dist/protocol.d.ts.map +1 -1
- package/dist/runtimeline.d.ts +1 -1
- package/dist/runtimeline.d.ts.map +1 -1
- package/dist/types.d.ts +270 -5
- package/dist/types.d.ts.map +1 -1
- package/dist/version.d.ts +1 -1
- package/extension/dist/background.js +1672 -11
- package/extension/dist/background.js.map +4 -4
- package/extension/dist/manifest.json +1 -1
- package/extension/dist/pagebridge.js +376 -3
- package/extension/dist/pagebridge.js.map +4 -4
- package/extension/dist/popup.html +1 -1
- package/extension/dist/popup.js +15 -7
- package/extension/dist/popup.js.map +2 -2
- package/extension/dist/sidepanel.html +1 -1
- package/extension/dist/sidepanel.js +287 -3
- package/extension/dist/sidepanel.js.map +2 -2
- package/extension/dist/style.css +2 -0
- package/extension/manifest.json +1 -1
- package/package.json +1 -1
package/dist/memory.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { a11ycapture, agentplan, agentsession, apikeyentry, apimapentry, artifactinventoryentry, artifactrecord, auditevent, authrecord, bannerreport, blockrule, bodyrecord, callrecord, capabilityreport, captchahandoff, capturecounter, channelrecord, clipboardconsentrecord, cleanuprule, cleanuprun, clipentry, clickablemap, closedtab, consolediff, consoleconsentrecord, cookieoperation, controltabstate, curatedlist, dataset, derivedselector, detectionrecord, diagnosticreport, dialogdecision, dialogpolicy, downloadrecord, endpointconfig, endpointrecord, errorrecord, errorreport, eventsubscription, exchangerecord, exportedartifact, extractsession, fetchconsent, focusevent, formprofile, headerule, imagebatch, keyholdstate, levelsummary, loglevel, longtaskentry, mediarecord, messageenvelope, mockspec, mimefilter, mutationevent, navcontrol, navintentrecord, navqueues, navrecord, netlogrecord, observationrecord, pagesignals, planprogress, provenancerecord, proxyroute, quarantineentry, ratelimitread, ratelimitstate, readercapture, recenttab, recordingconsentrecord, recordingrecord, rejectionrecord, resolutionsummary, retryoutcome, rotationtargetrecord, runsettings, safetyverdict, scanhookconfig, sessionsnapshot, sheetendpoint, shotpair, shotrecord, snapshotdiff, stepoutcome, streamstate, submitticket, tabbadge, tabgrouprecord, tablayout, tabmeta, tabwatchevent, taskrules, templateprofile, timelineentry, tokenrecord, trailentry, typeaheadpick, waitprofilerecord, watchregistration, wizardstate } from "./types.js";
|
|
1
|
+
import type { a11ycapture, agentplan, agentsession, apikeyentry, apimapentry, artifactinventoryentry, artifactrecord, auditevent, authrecord, bannerreport, blockrule, bodyrecord, breakpointspec, callrecord, capabilityreport, captchahandoff, capturecounter, cdpcommand, cdpeventrule, cdpsession, channelrecord, clipboardconsentrecord, cleanuprule, cleanuprun, clipentry, clickablemap, closedtab, consolediff, consoleconsentrecord, cookieoperation, controltabstate, cpuprofile, curatedlist, dataset, debuggergrant, derivedselector, detectionrecord, diagnosticreport, dialogdecision, dialogpolicy, downloadrecord, endpointconfig, endpointrecord, errorrecord, errorreport, eventsubscription, exchangerecord, exportedartifact, extractsession, fetchconsent, flowmetric, focusevent, formprofile, growsample, headerule, heaprecord, imagebatch, keyholdstate, levelsummary, loglevel, longtaskentry, mediarecord, memorytrend, messageenvelope, mockspec, mimefilter, mutationevent, navcontrol, navintentrecord, navqueues, navrecord, netlogrecord, observationrecord, pagesignals, pausestate, planprogress, provenancerecord, proxyroute, quarantineentry, ratelimitread, ratelimitstate, readercapture, recenttab, recordingconsentrecord, recordingrecord, rejectionrecord, resolutionsummary, retryoutcome, rotationtargetrecord, runsettings, safetyverdict, scanhookconfig, scriptoverride, sessionsnapshot, sheetendpoint, shiftentry, shotpair, shotrecord, snapshotdiff, sourcemapconsent, sourcemapref, stepoutcome, streamstate, submitticket, tabbadge, tabgrouprecord, tablayout, tabmeta, tabwatchevent, taskrules, templateprofile, timelineentry, tokenrecord, tracerecord, trailentry, typeaheadpick, waitprofilerecord, watchexpression, watchregistration, wizardstate } from "./types.js";
|
|
2
2
|
/** Provides a small storage seam that works in browser, tests and future adapters. */
|
|
3
3
|
export interface memoryadapter {
|
|
4
4
|
get<T>(key: string): Promise<T | undefined>;
|
|
@@ -492,10 +492,97 @@ export declare class sessionmemory {
|
|
|
492
492
|
setconsoleconsent(consent: consoleconsentrecord): Promise<void>;
|
|
493
493
|
/** Returns every console capture consent decision, newest first. */
|
|
494
494
|
getconsoleconsents(): Promise<consoleconsentrecord[]>;
|
|
495
|
+
/** Stores one devtools session record with its enabled domains and detach state, replacing the previous record of its id. */
|
|
496
|
+
setcdpsession(session: cdpsession): Promise<void>;
|
|
497
|
+
/** Returns every stored devtools session record, newest first. */
|
|
498
|
+
getcdpsessions(): Promise<cdpsession[]>;
|
|
499
|
+
/** Stores one raw command outcome with its duration and error class. */
|
|
500
|
+
addcdpcommand(command: cdpcommand): Promise<void>;
|
|
501
|
+
/** Returns every stored raw command outcome, newest first. */
|
|
502
|
+
getcdpcommands(): Promise<cdpcommand[]>;
|
|
503
|
+
/** Stores one domain event rule with its match filter, replacing the previous rule of its id. */
|
|
504
|
+
setcdpeventrule(rule: cdpeventrule): Promise<void>;
|
|
505
|
+
/** Returns every stored domain event rule, newest first. */
|
|
506
|
+
getcdpeventrules(): Promise<cdpeventrule[]>;
|
|
507
|
+
/** Stores one breakpoint record with its condition and hit counter, replacing the previous record of its id. */
|
|
508
|
+
addbreakpoint(spec: breakpointspec): Promise<void>;
|
|
509
|
+
/** Returns every stored breakpoint record, newest first. */
|
|
510
|
+
getbreakpoints(): Promise<breakpointspec[]>;
|
|
511
|
+
/** Stores one pause state capture; the user configured pause retention window expires the call frames and the dom snapshot reference of the oldest captures while the pause reason and hit breakpoint survive. */
|
|
512
|
+
addpause(pause: pausestate): Promise<void>;
|
|
513
|
+
/** Returns every stored pause state capture, newest first. */
|
|
514
|
+
getpauses(): Promise<pausestate[]>;
|
|
515
|
+
/** Returns the pause state captures of one run, newest first. */
|
|
516
|
+
listpauses(runid: string): Promise<pausestate[]>;
|
|
517
|
+
/** Stores one watch expression with its per pause values, replacing the previous expression of its id. */
|
|
518
|
+
setwatchexpression(expression: watchexpression): Promise<void>;
|
|
519
|
+
/** Returns every stored watch expression, newest first. */
|
|
520
|
+
getwatchexpressions(): Promise<watchexpression[]>;
|
|
521
|
+
/** Stores one script override with its review provenance, replacing the previous override of its id. */
|
|
522
|
+
addscriptoverride(spec: scriptoverride): Promise<void>;
|
|
523
|
+
/** Returns every stored script override, newest first. */
|
|
524
|
+
getscriptoverrides(): Promise<scriptoverride[]>;
|
|
525
|
+
/** Stores one debugger consent decision per origin with the consented domain list, replacing the previous decision of its id. */
|
|
526
|
+
setdebuggergrant(grant: debuggergrant): Promise<void>;
|
|
527
|
+
/** Returns every debugger consent decision, newest first. */
|
|
528
|
+
getdebuggergrants(): Promise<debuggergrant[]>;
|
|
529
|
+
/** Revokes every approved debugger consent of one origin: the revoke time stamps the records so the next attach needs a new reviewed prompt. */
|
|
530
|
+
revokedebuggergrants(origin: string, at: number): Promise<number>;
|
|
495
531
|
/** Merges expired entry counts into the per run level count summary that survives the retention window. */
|
|
496
532
|
private mergelevelsummary;
|
|
497
533
|
/** Returns every per run level count summary, newest first. */
|
|
498
534
|
getlevelsummaries(): Promise<levelsummary[]>;
|
|
535
|
+
/** Stores one measured flow metric of the run beside its step span; the flow series stays per run. */
|
|
536
|
+
addflowmetric(metric: flowmetric): Promise<void>;
|
|
537
|
+
/** Returns every stored flow metric, newest first. */
|
|
538
|
+
getflowmetrics(): Promise<flowmetric[]>;
|
|
539
|
+
/** Returns the flow metrics of one run, newest first. */
|
|
540
|
+
listflowmetrics(runid: string): Promise<flowmetric[]>;
|
|
541
|
+
/** Stores one heap snapshot record with its byte and node counts; the user configured profile retention window expires the heavy snapshot bytes while the counts survive. */
|
|
542
|
+
setheaprecord(heap: heaprecord): Promise<void>;
|
|
543
|
+
/** Returns every stored heap snapshot record, newest first. */
|
|
544
|
+
getheaprecords(): Promise<heaprecord[]>;
|
|
545
|
+
/** Stores one heap growth sample taken beside a step. */
|
|
546
|
+
addgrowsample(sample: growsample): Promise<void>;
|
|
547
|
+
/** Returns every stored heap growth sample, newest first. */
|
|
548
|
+
getgrowsamples(): Promise<growsample[]>;
|
|
549
|
+
/** Returns the heap growth samples of one run, newest first. */
|
|
550
|
+
listgrowsamples(runid: string): Promise<growsample[]>;
|
|
551
|
+
/** Stores one computed heap growth trend of a run with its slope and flagged steps, replacing the previous trend of the run. */
|
|
552
|
+
settrend(trend: memorytrend): Promise<void>;
|
|
553
|
+
/** Returns every stored heap growth trend, newest first. */
|
|
554
|
+
gettrends(): Promise<memorytrend[]>;
|
|
555
|
+
/** Stores one cpu profile record with its sample count and hot function list; the profile retention window expires the heavy sample payload while the counts and hot functions survive. */
|
|
556
|
+
setcpuprofile(profile: cpuprofile): Promise<void>;
|
|
557
|
+
/** Returns every stored cpu profile record, newest first. */
|
|
558
|
+
getcpuprofiles(): Promise<cpuprofile[]>;
|
|
559
|
+
/** Stores one layout shift entry with its score and impacted selectors. */
|
|
560
|
+
addshiftentry(entry: shiftentry): Promise<void>;
|
|
561
|
+
/** Returns every stored layout shift entry, newest first. */
|
|
562
|
+
getshiftentries(): Promise<shiftentry[]>;
|
|
563
|
+
/** Stores one trace record with its category list, byte size and step annotations; the profile retention window expires the heavy trace bytes while the metadata and annotations survive. */
|
|
564
|
+
settracerecord(trace: tracerecord): Promise<void>;
|
|
565
|
+
/** Returns every stored trace record, newest first. */
|
|
566
|
+
gettracerecords(): Promise<tracerecord[]>;
|
|
567
|
+
/** Returns the trace records filtered by run and applied categories. */
|
|
568
|
+
listtraces(filter: {
|
|
569
|
+
runid?: string;
|
|
570
|
+
categories?: string[];
|
|
571
|
+
}): Promise<tracerecord[]>;
|
|
572
|
+
/** Stores the exported file content of one trace beside its record; the retention window drops the file bytes of expired traces while the record survives. */
|
|
573
|
+
settracefile(traceid: string, content: string): Promise<void>;
|
|
574
|
+
/** Returns the exported file content of one trace, or undefined when the retention window dropped the bytes. */
|
|
575
|
+
gettracefile(traceid: string): Promise<string | undefined>;
|
|
576
|
+
/** Stores one source map reference of a run with its script url, map url and parsed state. */
|
|
577
|
+
setsourcemapref(ref: sourcemapref): Promise<void>;
|
|
578
|
+
/** Returns every stored source map reference, newest first. */
|
|
579
|
+
getsourcemaps(): Promise<sourcemapref[]>;
|
|
580
|
+
/** Stores one source map capture consent decision per origin, replacing the previous decision of its id. */
|
|
581
|
+
setsourcemapconsent(consent: sourcemapconsent): Promise<void>;
|
|
582
|
+
/** Returns every source map capture consent decision, newest first. */
|
|
583
|
+
getsourcemapconsents(): Promise<sourcemapconsent[]>;
|
|
584
|
+
/** Revokes every approved source map consent of one origin so the next capture needs a new reviewed prompt. */
|
|
585
|
+
revokesourcemapconsents(origin: string, at: number): Promise<number>;
|
|
499
586
|
}
|
|
500
587
|
/** Creates identifiers locally without a network dependency. */
|
|
501
588
|
export declare function randomid(): string;
|
package/dist/memory.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"memory.d.ts","sourceRoot":"","sources":["../memory.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"memory.d.ts","sourceRoot":"","sources":["../memory.ts"],"names":[],"mappings":"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"}
|
package/dist/policy.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { actionkind, agentplan, agentsession, captureexport, consoleconsentrecord, endpointconfig, formprofile, observationmode, policyevaluation, quarantineentry, rotationrule, runsettings, safetyverdict, spamrule, toolstep } from "./types.js";
|
|
1
|
+
import type { actionkind, agentplan, agentsession, attachtarget, captureexport, cdpallowlist, consoleconsentrecord, debuggergrant, endpointconfig, formprofile, observationmode, policyevaluation, quarantineentry, rotationrule, runsettings, safetyverdict, sourcemapconsent, spamrule, toolstep } from "./types.js";
|
|
2
2
|
/** Normalizes a user supplied HTTPS endpoint without preserving a provider lock-in. */
|
|
3
3
|
export declare function normalizeendpoint(value: string): endpointconfig;
|
|
4
4
|
/** Creates the exact optional host pattern requested from Chromium. */
|
|
@@ -7,6 +7,10 @@ export declare function hostpattern(origin: string): string;
|
|
|
7
7
|
export declare function iswatchkind(kind: actionkind): boolean;
|
|
8
8
|
/** True when the kind belongs to the debugging family of console, error and task watching. */
|
|
9
9
|
export declare function isdebugkind(kind: actionkind): boolean;
|
|
10
|
+
/** True when the kind belongs to the devtools protocol family of attaches, raw commands, event watches, breakpoints, stepping, watch expressions and script overrides. */
|
|
11
|
+
export declare function iscdpkind(kind: actionkind): boolean;
|
|
12
|
+
/** True when the kind belongs to the profiling family of flow, heap, cpu, shift, trace and source map instruments. */
|
|
13
|
+
export declare function isprofilekind(kind: actionkind): boolean;
|
|
10
14
|
/** Grades the observation mode of a kind: passive capture, watched lifetimes or diffing passes. */
|
|
11
15
|
export declare function observationmodeof(kind: actionkind): observationmode;
|
|
12
16
|
/** Defines action risk from the fixed local allowlist. */
|
|
@@ -176,6 +180,35 @@ export declare function diffreviewgrade(): {
|
|
|
176
180
|
export declare function spamruleof(value: unknown): spamrule | undefined;
|
|
177
181
|
/** Normalizes a reviewed log rotation rule: the max entries per run and the overflow target store with no hardcoded entry ceiling. */
|
|
178
182
|
export declare function rotationruleof(value: unknown): rotationrule | undefined;
|
|
183
|
+
/** Requires the active run tab grant of the live session for every devtools protocol kind: the debug gate scopes attaches, commands, watches, breakpoints, steps and overrides to the run tab only and refuses every other tab. */
|
|
184
|
+
export declare function debuggate(session: agentsession | undefined, tabid: number, origin: string, now: number): policyevaluation;
|
|
185
|
+
/** True when one approved debugger consent of that origin covers every requested domain; the first attachcdp of a run needs the approved record and revocation removes the coverage. */
|
|
186
|
+
export declare function debuggerconsentcovers(origin: string, domains: string[], grants: debuggergrant[]): policyevaluation;
|
|
187
|
+
/** The profiling target gate of every 1.1.47 kind: the live session run tab and origin grants come first, every iframe, worker and service worker target stays inside the granted origins, and the reviewed debugger grant of the origin covers every profiling instrument because profiling is debugger grade instrumentation. */
|
|
188
|
+
export declare function targetgate(input: {
|
|
189
|
+
session: agentsession | undefined;
|
|
190
|
+
tabid: number;
|
|
191
|
+
origin: string;
|
|
192
|
+
targets: attachtarget[];
|
|
193
|
+
grants: debuggergrant[] | undefined;
|
|
194
|
+
now: number;
|
|
195
|
+
}): policyevaluation;
|
|
196
|
+
/** True when one approved source map capture consent of that origin covers the capture; revocation removes the coverage and the next capture needs a new reviewed prompt. */
|
|
197
|
+
export declare function sourcemapconsentcovers(origin: string, consents: sourcemapconsent[]): policyevaluation;
|
|
198
|
+
/** Exposes the user configured retention window for the heavy profile bytes; an absent window keeps every snapshot, sample and trace file. */
|
|
199
|
+
export declare function profileretentionwindow(settings: runsettings | undefined): number | undefined;
|
|
200
|
+
/** Exposes the user configured trace byte ceiling; an absent value never refuses a trace export because the cap stays a user choice only. */
|
|
201
|
+
export declare function traceceilingof(settings: runsettings | undefined): number | undefined;
|
|
202
|
+
/** Validates one breakpoint condition against the reviewed expression grammar: member chains, literals of number, string, boolean and null, comparison and logic operators, negation and parentheses; assignments, calls and statements are refused. */
|
|
203
|
+
export declare function validatebreakpointcondition(condition: string): policyevaluation;
|
|
204
|
+
/** Keeps the breakpoint count of one run inside the user configured ceiling: an absent ceiling never refuses a breakpoint because the cap stays a user choice only. */
|
|
205
|
+
export declare function breakpointbudgetallowed(active: number, ceiling: number | undefined): policyevaluation;
|
|
206
|
+
/** Exposes the pause capture retention window as a user configured choice; an absent value keeps every pause capture with its call frames. */
|
|
207
|
+
export declare function pauseretentionwindow(settings: runsettings | undefined): number | undefined;
|
|
208
|
+
/** Exposes the user configured breakpoint ceiling; an absent value never refuses a breakpoint because the cap stays a user choice only. */
|
|
209
|
+
export declare function breakpointceilingof(settings: runsettings | undefined): number | undefined;
|
|
210
|
+
/** Resolves the reviewed cdp allowlist of one plan: the enabled domains and method gates of its attachcdp step, the reviewable contract every later cdp kind of the plan must stay inside. */
|
|
211
|
+
export declare function planallowlist(steps: toolstep[]): cdpallowlist | undefined;
|
|
179
212
|
/** Resolves the reviewed outbound url of a network control step at review time: the form url of postform, the upload url of postfiles and the token url of authflow. */
|
|
180
213
|
export declare function controltarget(step: toolstep): string | undefined;
|
|
181
214
|
/** Resolves the reviewed channel url of a socket step at review time: the socket url of opensocket, the event stream url of subscribesse and the poll url of longpoll. */
|
package/dist/policy.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"policy.d.ts","sourceRoot":"","sources":["../policy.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,SAAS,EAAE,YAAY,EAAE,aAAa,
|
|
1
|
+
{"version":3,"file":"policy.d.ts","sourceRoot":"","sources":["../policy.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
import type { attachtarget, cpuprofile, flowmetric, flowspec, growsample, heaprecord, memorytrend, shiftentry, sourcemapref, traceannotation, tracerecord } from "./types.js";
|
|
2
|
+
/**
|
|
3
|
+
* Profilers for the 1.1.47 debugging part three family.
|
|
4
|
+
* Every correlated rule for the reviewed flow, heap, cpu, trace and source map instruments lives in this file: the flow metric grammar with per step mark windows and blocking sums, the on demand heap snapshot records with the user chosen interval, the growth trend slopes with the flagged steps, the cpu profile records with hot functions, the layout shift entries with impacted selectors, the trace records with the reviewed category list and step annotations, the offline replay of a captured trace file, and the source map references with stack rewriting.
|
|
5
|
+
* The chrome devtools protocol needs the debugger permission, which the manifest gate forbids, so every measurement derives from the performance timeline buffers, the injected instrumentation probes of the page harness and the existing page seams; the derivation stays recorded on every record instead of hidden.
|
|
6
|
+
*/
|
|
7
|
+
/** The profiling kinds of the debugging part three family, listed among the available capabilities of every proposal request. */
|
|
8
|
+
export declare const profilerkinds: string[];
|
|
9
|
+
/** The reviewed flow metric set: navigation, paint and largest contentful paint timings, first input delay and interaction timings, and the blocking time sums per step window. */
|
|
10
|
+
export declare const flowmetricnames: string[];
|
|
11
|
+
/** The reviewed trace category list applied to every recorded trace; the enabled subset stays a user choice bounded by this grammar only. */
|
|
12
|
+
export declare const tracecategories: string[];
|
|
13
|
+
/** Normalizes one reviewed profiling attach target: the target kind of page, iframe, worker or service worker with an explicit https url. */
|
|
14
|
+
export declare function attachtargetof(value: unknown): attachtarget | undefined;
|
|
15
|
+
/** Normalizes one reviewed flow spec: a non-empty mark prefix, a non-empty step window and a metric list of the reviewed metric set. */
|
|
16
|
+
export declare function flowspecof(value: unknown): flowspec | undefined;
|
|
17
|
+
/** One flattened performance entry of the page buffers: the name, the entry type, the start time and the duration. */
|
|
18
|
+
export interface perfentry {
|
|
19
|
+
name: string;
|
|
20
|
+
type: string;
|
|
21
|
+
start: number;
|
|
22
|
+
duration: number;
|
|
23
|
+
}
|
|
24
|
+
/** Resolves the reviewed step windows of a flow spec from the performance marks of the prefix: every step id of the window gains its start and end from the marks of the measured page. */
|
|
25
|
+
export declare function stepwindows(spec: flowspec, marks: perfentry[]): Array<{
|
|
26
|
+
stepid: string;
|
|
27
|
+
start: number;
|
|
28
|
+
end: number;
|
|
29
|
+
}>;
|
|
30
|
+
/** Measures one reviewed flow from the performance buffers of the page: every metric of the reviewed set carries its window start and end, its duration and the step ids it spans, navigation, paint and largest contentful paint timings come from the navigation and paint buffers, first input delay and interaction timings from the event buffers and the blocking time is summed per step window from the long task entries over the fifty millisecond threshold. */
|
|
31
|
+
export declare function measure(input: {
|
|
32
|
+
runid: string;
|
|
33
|
+
stepid: string;
|
|
34
|
+
spec: flowspec;
|
|
35
|
+
entries: perfentry[];
|
|
36
|
+
now: number;
|
|
37
|
+
}): flowmetric[];
|
|
38
|
+
/** True when the user chosen heap interval allows a new on demand snapshot: the frequency bound stays a user choice only and an absent interval always allows the capture. */
|
|
39
|
+
export declare function heapintervalallowed(lastcapturedat: number | undefined, interval: number | undefined, now: number): boolean;
|
|
40
|
+
/** Captures one on demand heap snapshot record with its byte size, node count and capture time; the counts derive from the page performance memory buffer and the dom node count because no heap profiler exists without the debugger permission. */
|
|
41
|
+
export declare function heapsnap(input: {
|
|
42
|
+
id: string;
|
|
43
|
+
runid: string;
|
|
44
|
+
stepid: string;
|
|
45
|
+
origin: string;
|
|
46
|
+
usedbytes: number;
|
|
47
|
+
limitbytes: number;
|
|
48
|
+
nodecount: number;
|
|
49
|
+
now: number;
|
|
50
|
+
}): heaprecord;
|
|
51
|
+
/** Records one heap growth sample taken beside a step with the used and limit bytes of the page memory buffer. */
|
|
52
|
+
export declare function growsampleof(input: {
|
|
53
|
+
id: string;
|
|
54
|
+
runid: string;
|
|
55
|
+
stepid: string;
|
|
56
|
+
usedbytes: number;
|
|
57
|
+
limitbytes: number;
|
|
58
|
+
now: number;
|
|
59
|
+
}): growsample;
|
|
60
|
+
/** Computes the growth trend of the heap samples: the slope in bytes per millisecond from the first to the last sample, the sample count and the flagged steps whose per step growth exceeds the reviewed slope. */
|
|
61
|
+
export declare function growthtrend(input: {
|
|
62
|
+
runid: string;
|
|
63
|
+
samples: growsample[];
|
|
64
|
+
slope: number;
|
|
65
|
+
now: number;
|
|
66
|
+
}): memorytrend;
|
|
67
|
+
/** One cpu sample of the profiled window: the observed function name and the sampled time in milliseconds. */
|
|
68
|
+
export interface cpusample {
|
|
69
|
+
name: string;
|
|
70
|
+
time: number;
|
|
71
|
+
}
|
|
72
|
+
/** Captures one cpu profile record around the step window: the profiled duration, the sample count and the hot functions ranked by their accumulated sampled time; the samples derive from the long task attribution and event timing buffers because no sampling profiler exists without the debugger permission. */
|
|
73
|
+
export declare function cpusnap(input: {
|
|
74
|
+
id: string;
|
|
75
|
+
runid: string;
|
|
76
|
+
stepid: string;
|
|
77
|
+
origin: string;
|
|
78
|
+
duration: number;
|
|
79
|
+
samples: cpusample[];
|
|
80
|
+
now: number;
|
|
81
|
+
}): cpuprofile;
|
|
82
|
+
/** Normalizes one observed layout shift entry: the shift score, the start time and the impacted element selectors derived from the shift sources of the page observer. */
|
|
83
|
+
export declare function shiftentryof(value: unknown): shiftentry | undefined;
|
|
84
|
+
/** Starts one trace record of the flow with the reviewed category list; the record stops at the reviewed window end and the exported file derives from the performance timeline buffers. */
|
|
85
|
+
export declare function tracestart(input: {
|
|
86
|
+
id: string;
|
|
87
|
+
runid: string;
|
|
88
|
+
stepid: string;
|
|
89
|
+
origin: string;
|
|
90
|
+
categories: string[];
|
|
91
|
+
now: number;
|
|
92
|
+
}): tracerecord;
|
|
93
|
+
/** One derived trace event of the recorded window: the name, the reviewed category and the time offset from the trace start. */
|
|
94
|
+
export interface traceevent {
|
|
95
|
+
name: string;
|
|
96
|
+
category: string;
|
|
97
|
+
offset: number;
|
|
98
|
+
}
|
|
99
|
+
/** Serializes the recorded trace into its exportable file content: the honest derived format of the performance timeline events with the reviewed categories and the step annotations, never the devtools trace binary format. */
|
|
100
|
+
export declare function tracetofile(trace: tracerecord, events: traceevent[]): {
|
|
101
|
+
content: string;
|
|
102
|
+
bytesize: number;
|
|
103
|
+
events: number;
|
|
104
|
+
};
|
|
105
|
+
/** Normalizes one reviewed trace annotation input: the step id, the label and the time offset from the trace start. */
|
|
106
|
+
export declare function annotationof(value: unknown): traceannotation | undefined;
|
|
107
|
+
/** Writes the reviewed step ids and labels into the trace metadata: every annotation aligns with the run timeline entry of its step so the replay view shows the trace beside the reviewed steps; exported traces without step annotations are refused upstream. */
|
|
108
|
+
export declare function annotatetrace(input: {
|
|
109
|
+
trace: tracerecord;
|
|
110
|
+
annotations: traceannotation[];
|
|
111
|
+
timeline: Array<{
|
|
112
|
+
stepid: string;
|
|
113
|
+
time: number;
|
|
114
|
+
}>;
|
|
115
|
+
now: number;
|
|
116
|
+
}): tracerecord;
|
|
117
|
+
/** The offline replay of one captured trace file: the events, the category counts and the step annotations of the file render without a live browser. */
|
|
118
|
+
export declare function replaytrace(content: string): {
|
|
119
|
+
traceid: string;
|
|
120
|
+
runid: string;
|
|
121
|
+
categories: Record<string, number>;
|
|
122
|
+
events: Array<{
|
|
123
|
+
name: string;
|
|
124
|
+
category: string;
|
|
125
|
+
offset: number;
|
|
126
|
+
stepid?: string;
|
|
127
|
+
}>;
|
|
128
|
+
annotations: traceannotation[];
|
|
129
|
+
};
|
|
130
|
+
/** Resolves the sourceMappingURL declaration of one script source: the map url resolves against the script url and scripts without a declaration have no map to capture. */
|
|
131
|
+
export declare function mapurlof(scripturl: string, source: string): string | undefined;
|
|
132
|
+
/** Builds the source map reference drafts of the loaded scripts: every script with a sourceMappingURL declaration gains its map url while the parsed state is decided by the capture. */
|
|
133
|
+
export declare function capturesourcemaps(input: {
|
|
134
|
+
runid: string;
|
|
135
|
+
stepid: string;
|
|
136
|
+
origin: string;
|
|
137
|
+
scripts: Array<{
|
|
138
|
+
url: string;
|
|
139
|
+
source: string;
|
|
140
|
+
}>;
|
|
141
|
+
now: number;
|
|
142
|
+
}): sourcemapref[];
|
|
143
|
+
/** Rewrites one stack location through a parsed source map: the minimal mapping lookup decodes the mappings field, walks the generated lines and resolves the original source file and line of the generated position; unparsed maps leave the location untouched. */
|
|
144
|
+
export declare function rewritesourcelocation(input: {
|
|
145
|
+
url: string;
|
|
146
|
+
line: number;
|
|
147
|
+
column?: number;
|
|
148
|
+
}, map: {
|
|
149
|
+
sources?: string[];
|
|
150
|
+
mappings?: string;
|
|
151
|
+
}): {
|
|
152
|
+
url: string;
|
|
153
|
+
line: number;
|
|
154
|
+
} | undefined;
|
|
155
|
+
/** Expires the heavy profile bytes after the user configured retention window: the snapshot bytes, sample payloads and trace file bytes drop while the byte and node counts, the sample counts, hot functions, category lists and step annotations survive. */
|
|
156
|
+
export declare function expireprofilerecords(input: {
|
|
157
|
+
heaps: heaprecord[];
|
|
158
|
+
profiles: cpuprofile[];
|
|
159
|
+
traces: tracerecord[];
|
|
160
|
+
retention: number | undefined;
|
|
161
|
+
now: number;
|
|
162
|
+
}): {
|
|
163
|
+
heaps: heaprecord[];
|
|
164
|
+
profiles: cpuprofile[];
|
|
165
|
+
traces: tracerecord[];
|
|
166
|
+
};
|
|
167
|
+
//# sourceMappingURL=profilers.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"profilers.d.ts","sourceRoot":"","sources":["../profilers.ts"],"names":[],"mappings":"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"}
|
package/dist/protocol.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { protocolversion, type agentplan, type apimapentry, type bannerreport, type blockrule, type callrecord, type channelrecord, type clickablemap, type consolediff, type cookieoperation, type dataset, type downloadrecord, type errorrecord, type errorreport, type eventsubscription, type exchangerecord, type extractsession, type focusevent, type formreport, type headerule, type imagebatch, type keyholdstate, type longtaskentry, type mediarecord, type mockspec, type mutationevent, type navstate, type netlogrecord, type observation, type pagesignals, type planproposal, type proposalrequest, type provenancerecord, type proxyroute, type quarantineentry, type ratelimitread, type rejectionrecord, type resolvedtarget, type safetyverdict, type selectorcandidate, type shotpair, type shotrecord, type snapshotdiff, type stepoutcome, type tablayout, type tabreport, type timelineentry, type tokenrecord, type trailentry, type transformrule, type typeaheadpick, type wizardstate } from "./types.js";
|
|
1
|
+
import { protocolversion, type agentplan, type apimapentry, type bannerreport, type blockrule, type breakpointspec, type callrecord, type cdpcommand, type cdpeventrule, type cdpsession, type channelrecord, type clickablemap, type consolediff, type cookieoperation, type cpuprofile, type dataset, type debuggergrant, type downloadrecord, type errorrecord, type errorreport, type eventsubscription, type exchangerecord, type extractsession, type flowmetric, type focusevent, type formreport, type growsample, type headerule, type heaprecord, type imagebatch, type keyholdstate, type longtaskentry, type mediarecord, type memorytrend, type mockspec, type mutationevent, type navstate, type netlogrecord, type observation, type pagesignals, type pausestate, type planproposal, type proposalrequest, type provenancerecord, type proxyroute, type quarantineentry, type ratelimitread, type rejectionrecord, type resolvedtarget, type safetyverdict, type scriptoverride, type selectorcandidate, type shiftentry, type shotpair, type shotrecord, type snapshotdiff, type sourcemapconsent, type sourcemapref, type stepoutcome, type tablayout, type tabreport, type timelineentry, type tokenrecord, type tracerecord, type trailentry, type transformrule, type typeaheadpick, type watchexpression, type wizardstate } from "./types.js";
|
|
2
2
|
/**
|
|
3
3
|
* Reviewed options grammar shared by every step kind.
|
|
4
4
|
*
|
|
@@ -39,6 +39,10 @@ import { protocolversion, type agentplan, type apimapentry, type bannerreport, t
|
|
|
39
39
|
* - network control steps attach structured evidence to step details: the control block with the applied, blocked and mocked rule counts of the run, blocked counts per rule, applied header rewrite rules with their provenance, redacted cookie views without values, oauth flow state with provider and scopes while token values never appear, api key entries with last use timestamps and no key material, proxy route state with apply and revert times, rate limit waits with reset times, urlencoded form encodings and streamed multipart upload progress; the response envelope gains a control block, and the auth report carries token metadata per provider with scopes and expiry windows but no token values.
|
|
40
40
|
* - the debugging family adds its parameter grammar: `watchconsole`, `watcherrors` and `watchtasks` carry a reviewed `watch` window object with a `window` in milliseconds kept inside the reviewed `wait` budget (both user choices with no code ceiling), a `level` floor from the reviewed level set (`error`, `warn`, `info`, `log`, `debug`, `trace`) and optional `sources` filters from the reviewed timeline source grammar (`console`, `error`, `rejection`, `resource`, `longtask`, `network`); `watchconsole` adds the required non-empty `redact` pattern list applied before any console text leaves the page bridge, a `depth` serialization bound, a `spam` rule of `pattern`, `windowsize` and `collapse` threshold and a `rotation` rule of `maxentries` with an `overflowtarget` store; `watchtasks` adds an optional `threshold` in milliseconds; the kinds stay read only behind the timelinegate that scopes capture to the run tab.
|
|
41
41
|
* - debugging steps attach structured evidence to step details: the timeline block with the entry counts per level and the spam collapse count, console entries with their level, redacted text and argument kinds, error and rejection ids with stack frames, source urls and lines, resource failures with element context, long task entries with attribution names and the blocking duration per step window; the response envelope gains a timeline block, and the timeline report carries every entry, error record, rejection record and long task entry of the run while the console diff report carries the added, removed and repeated line classes of two compared runs.
|
|
42
|
+
* - the debugging part two family adds its parameter grammar: `attachcdp` carries a reviewed non-empty `domains` list of the reviewed domain grammar (`Runtime`, `Log`, `Debugger`, `DOM`, `Network`, `Page`), the required `teardown` plan of `revertsteps` with the `resumepolicy` of resume, pause or ask (attaches without one are refused at validation and in the proposal parser) and an optional method `allowlist` of `Domain.method` gates inside the enabled domains; `detachcdp` carries no parameters and reverts every breakpoint and override before detaching; `cdpcmd` carries a reviewed `command` of the `Domain.method` form with optional `params` and a dotted `resultpath`, and its method domain must stay inside the enabled domain allowlist of the plan attach; `watchcdp` carries reviewed `events` rules of `domain`, `event` and optional payload `match` plus the required `watch` lifetime window kept inside the reviewed `wait` budget; `setbreakpoint` carries a reviewed `breakpoint` of https `url`, zero based `line`, optional `column` and a `condition` of the reviewed expression grammar (member chains, literals, comparison and logic operators, negation and parentheses only); `stepcode` carries the reviewed `mode` of stepover, stepinto, stepout or resume; `watchexpr` carries the reviewed `expression` text with its pause `scope` and the explicit `reviewed` flag before any evaluation; and `overridescript` carries a reviewed `override` of an https origin `urlpattern` with the full fixture `source` behind the explicit `reviewed` flag.
|
|
43
|
+
* - debugging part two steps attach structured evidence to step details: the cdp block with the session state and command ids, pausestate summaries with their call frames and dom snapshot ids, event counts per domain of watchcdp results, breakpoint registrations with hit counts, watch expression values per pause and override applications with revert controls; the response envelope gains a cdp block, and the cdp report carries every session, command outcome, event rule, breakpoint, pause state, watch expression and override of the run with the override sources held back.
|
|
44
|
+
* - the debugging part three family adds its parameter grammar: `measureflow` carries a reviewed `flow` spec of the `prefix` mark prefix, the `steps` step window and the `metrics` list of the reviewed metric set (`navigation`, `paint`, `lcp`, `fid`, `interaction`, `blocking`) plus the required `watch` window inside the reviewed `wait` budget; `heapshot` carries an optional reviewed `heap` object with the user chosen snapshot `interval` only; `trackmemory` carries a reviewed `growth` object with the reviewed `slope` in bytes per millisecond and the optional user chosen sampling `interval`; `profilecpu` carries a reviewed `profile` object with the profiled `duration` kept inside the reviewed `wait` budget; `watchshifts` carries the reviewed `watch` window of the user chosen observation length with an optional score `threshold`; `traceload` carries a reviewed `trace` object with a non-empty `categories` list of the reviewed category grammar (`navigation`, `scripting`, `rendering`, `painting`, `loading`, `network`), the reviewed trace `window` it stops at and the optional `exporttarget` of memory or download, and the user configured trace byte ceiling applies at export; `annotatetrace` carries the stored `trace` id with its `traceid` plus the required non-empty `annotations` list of `stepid`, `label` and optional `offset` so exported traces never lose their step ids; `replaytrace` carries the stored trace id of a recorded trace and renders the file offline; `capturesourcemaps` carries an optional `scripts` list of reviewed HTTPS urls and needs the per origin source map consent first; profiling kinds also accept `target` and `attachtargets` parameters of the reviewed attach target grammar with the `kind` of page, iframe, worker or serviceworker and the https `url`, and every non page target stays inside the granted origins.
|
|
45
|
+
* - debugging part three steps attach structured evidence to step details: the profile block with the flow metric count and the memory sample count, the flow durations per step, the heap and cpu profile record ids with their byte, node and sample counts, the layout shift entries with scores and impacted selectors, the trace record with its category list, event count and step annotations, and the source map references with their parsed state; the response envelope gains a profile block, and the profile report carries every flow metric, heap record, growth sample, growth trend, cpu profile, shift entry, trace record and source map reference of the run while the source map consent prompts stay held back.
|
|
42
46
|
*
|
|
43
47
|
* Ambiguous text, aria or name resolutions are refused at execution time with the candidate list so the user can choose.
|
|
44
48
|
*/
|
|
@@ -46,7 +50,7 @@ import { protocolversion, type agentplan, type apimapentry, type bannerreport, t
|
|
|
46
50
|
export declare function parseproposal(value: unknown, origin: string, grants?: string[]): planproposal;
|
|
47
51
|
/** Shapes the only data that may be sent to a user-configured agent endpoint. */
|
|
48
52
|
export declare function requestbody(input: proposalrequest): string;
|
|
49
|
-
/** Wraps one executed step outcome in the versioned response envelope for callers, attaching the matched element summary, the capture block of capture steps, the media block of media steps, the transport block of outbound calls, the network block of observed exchanges and channels, the control block of applied traffic rules
|
|
53
|
+
/** Wraps one executed step outcome in the versioned response envelope for callers, attaching the matched element summary, the capture block of capture steps, the media block of media steps, the transport block of outbound calls, the network block of observed exchanges and channels, the control block of applied traffic rules, the timeline block of debugging steps, the cdp block of devtools protocol steps and the profile block of profiling steps for review. */
|
|
50
54
|
export declare function outcomeresponse(input: {
|
|
51
55
|
outcome: stepoutcome;
|
|
52
56
|
plan: agentplan;
|
|
@@ -82,6 +86,15 @@ export declare function outcomeresponse(input: {
|
|
|
82
86
|
levels: Record<string, number>;
|
|
83
87
|
collapsed: number;
|
|
84
88
|
};
|
|
89
|
+
cdp?: {
|
|
90
|
+
sessionid: string;
|
|
91
|
+
state: string;
|
|
92
|
+
commandids: string[];
|
|
93
|
+
};
|
|
94
|
+
profile?: {
|
|
95
|
+
metrics: number;
|
|
96
|
+
samples: number;
|
|
97
|
+
};
|
|
85
98
|
}): string;
|
|
86
99
|
/** Wraps a clickable map payload with numbered entries in the versioned response envelope. */
|
|
87
100
|
export declare function mapresponse(input: {
|
|
@@ -311,4 +324,54 @@ export declare function consolediffreport(input: {
|
|
|
311
324
|
version: typeof protocolversion;
|
|
312
325
|
diff: consolediff;
|
|
313
326
|
};
|
|
327
|
+
/** Carries the devtools protocol state of the run in the session context envelope: every session with its domains and durations, the command outcomes with durations and error classes, the event rules with match counts, the breakpoints with hit counts and conditions, the pause states with their call frames and dom snapshot ids, the watch expressions with their per pause values and the script overrides with review provenance while the fixture sources stay held back. */
|
|
328
|
+
export declare function cdpreport(input: {
|
|
329
|
+
sessions: cdpsession[];
|
|
330
|
+
commands: cdpcommand[];
|
|
331
|
+
events: cdpeventrule[];
|
|
332
|
+
breakpoints: breakpointspec[];
|
|
333
|
+
pauses: pausestate[];
|
|
334
|
+
watches: watchexpression[];
|
|
335
|
+
overrides: scriptoverride[];
|
|
336
|
+
grants: debuggergrant[];
|
|
337
|
+
}): {
|
|
338
|
+
version: typeof protocolversion;
|
|
339
|
+
sessions: cdpsession[];
|
|
340
|
+
commands: cdpcommand[];
|
|
341
|
+
events: cdpeventrule[];
|
|
342
|
+
breakpoints: breakpointspec[];
|
|
343
|
+
pauses: pausestate[];
|
|
344
|
+
watches: watchexpression[];
|
|
345
|
+
overrides: Array<Omit<scriptoverride, "source"> & {
|
|
346
|
+
source?: undefined;
|
|
347
|
+
}>;
|
|
348
|
+
grants: Array<Omit<debuggergrant, "prompt"> & {
|
|
349
|
+
prompt?: undefined;
|
|
350
|
+
}>;
|
|
351
|
+
};
|
|
352
|
+
/** Carries the profiling state of the run in the session context envelope: every flow metric with its step span and duration, the heap records with byte and node counts, the growth samples with the computed trend of flagged steps, the cpu profiles with hot function lists, the layout shift entries with scores and impacted selectors, the trace records with their category lists, event counts and step annotations, and the source map references with their parsed state while the source map consent prompts stay held back. */
|
|
353
|
+
export declare function profilereport(input: {
|
|
354
|
+
flows: flowmetric[];
|
|
355
|
+
heaps: heaprecord[];
|
|
356
|
+
samples: growsample[];
|
|
357
|
+
trends: memorytrend[];
|
|
358
|
+
profiles: cpuprofile[];
|
|
359
|
+
shifts: shiftentry[];
|
|
360
|
+
traces: tracerecord[];
|
|
361
|
+
sourcemaps: sourcemapref[];
|
|
362
|
+
consents: sourcemapconsent[];
|
|
363
|
+
}): {
|
|
364
|
+
version: typeof protocolversion;
|
|
365
|
+
flows: flowmetric[];
|
|
366
|
+
heaps: heaprecord[];
|
|
367
|
+
samples: growsample[];
|
|
368
|
+
trends: memorytrend[];
|
|
369
|
+
profiles: cpuprofile[];
|
|
370
|
+
shifts: shiftentry[];
|
|
371
|
+
traces: tracerecord[];
|
|
372
|
+
sourcemaps: sourcemapref[];
|
|
373
|
+
consents: Array<Omit<sourcemapconsent, "prompt"> & {
|
|
374
|
+
prompt?: undefined;
|
|
375
|
+
}>;
|
|
376
|
+
};
|
|
314
377
|
//# sourceMappingURL=protocol.d.ts.map
|