@wenathlan/extension 1.1.40 → 1.1.41
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 +5 -4
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +551 -5
- package/dist/index.js.map +4 -4
- package/dist/media.d.ts +96 -0
- package/dist/media.d.ts.map +1 -0
- package/dist/memory.d.ts +24 -1
- package/dist/memory.d.ts.map +1 -1
- package/dist/policy.d.ts +12 -0
- package/dist/policy.d.ts.map +1 -1
- package/dist/protocol.d.ts +18 -2
- package/dist/protocol.d.ts.map +1 -1
- package/dist/types.d.ts +208 -3
- package/dist/types.d.ts.map +1 -1
- package/dist/version.d.ts +1 -1
- package/extension/dist/background.js +955 -11
- package/extension/dist/background.js.map +4 -4
- package/extension/dist/manifest.json +1 -1
- package/extension/dist/pagebridge.js +194 -3
- package/extension/dist/pagebridge.js.map +3 -3
- package/extension/dist/popup.html +1 -1
- package/extension/dist/popup.js +14 -2
- package/extension/dist/popup.js.map +2 -2
- package/extension/dist/sidepanel.html +1 -1
- package/extension/dist/sidepanel.js +253 -2
- package/extension/dist/sidepanel.js.map +3 -3
- package/extension/dist/style.css +2 -0
- package/extension/manifest.json +1 -1
- package/package.json +1 -1
package/dist/media.d.ts
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import type { assetrecord, captureformat, capturenaming, convertdirective, imagefilter, imagedescriptor, mediadatum, pdfoptions, recordingoptions, recordingrecord, streamrecord, thumbdirective } from "./types.js";
|
|
2
|
+
/**
|
|
3
|
+
* Media capture part two logics for the 1.1.41 family.
|
|
4
|
+
* Every correlated rule for the derived pdf composition with reviewed paper sizes, margins and pagination break points, the recording records with their frame intervals and clean stops, the image filter matching with url deduplication and counter names, the lapse frame ordering, the conversion and thumbnail geometry and the raw media, asset and stream normalization lives in this file.
|
|
5
|
+
*/
|
|
6
|
+
/** The media capture part two kinds, listed among the available capabilities of every proposal request. */
|
|
7
|
+
export declare const mediakinds: string[];
|
|
8
|
+
/** Normalizes reviewed pdf options with paper defaults; unknown fields stay ignored. */
|
|
9
|
+
export declare function pdfoptionsof(value: unknown): pdfoptions;
|
|
10
|
+
/** Resolves the pdf page size in points after the landscape swap. */
|
|
11
|
+
export declare function pdfpagesize(options: pdfoptions): {
|
|
12
|
+
width: number;
|
|
13
|
+
height: number;
|
|
14
|
+
};
|
|
15
|
+
/** Wraps one text block into page lines for the reviewed geometry: word wrap at the average glyph width of the Helvetica body font. */
|
|
16
|
+
export declare function pdftextlayout(text: string, options: pdfoptions): string[];
|
|
17
|
+
/** Splits the scroll height into report page segments at reviewed break point offsets; absent break points walk the height in viewport steps. */
|
|
18
|
+
export declare function pdfsegments(scrollheight: number, viewportheight: number, breaks: number[]): Array<{
|
|
19
|
+
top: number;
|
|
20
|
+
height: number;
|
|
21
|
+
}>;
|
|
22
|
+
/** Composes one derived pdf document from the page text blocks with the reviewed paper size, margins, scale and landscape orientation; the byte size is the latin one document length. */
|
|
23
|
+
export declare function buildpdf(pages: string[], options: pdfoptions): {
|
|
24
|
+
document: string;
|
|
25
|
+
bytes: number;
|
|
26
|
+
pages: number;
|
|
27
|
+
pagewidth: number;
|
|
28
|
+
pageheight: number;
|
|
29
|
+
};
|
|
30
|
+
/** Normalizes reviewed recording options with the tab scope as the default. */
|
|
31
|
+
export declare function recordingoptionsof(value: unknown): recordingoptions;
|
|
32
|
+
/** Opens one recording record of user activity with the reviewed options applied. */
|
|
33
|
+
export declare function newrecording(input: {
|
|
34
|
+
id: string;
|
|
35
|
+
runid: string;
|
|
36
|
+
stepid: string;
|
|
37
|
+
tabid: number;
|
|
38
|
+
kind: "screen" | "audio";
|
|
39
|
+
options: recordingoptions;
|
|
40
|
+
at: number;
|
|
41
|
+
}): recordingrecord;
|
|
42
|
+
/** Closes one recording cleanly at the given time and stamps the duration. */
|
|
43
|
+
export declare function finishrecording(record: recordingrecord, endat: number): recordingrecord;
|
|
44
|
+
/** Frame shoot interval in milliseconds of the reviewed fps; the fps itself carries no code ceiling. */
|
|
45
|
+
export declare function frameinterval(fps: number): number;
|
|
46
|
+
/** Normalizes a reviewed image filter; unknown fields stay ignored. */
|
|
47
|
+
export declare function imagefilterof(value: unknown): imagefilter;
|
|
48
|
+
/** True when one observed image passes the reviewed filter: minimum dimensions and the format list; absent bounds never refuse. */
|
|
49
|
+
export declare function imagematches(image: imagedescriptor, filter: imagefilter): boolean;
|
|
50
|
+
/** Deduplicates observed images by url before any download starts; the first observation of a url wins. */
|
|
51
|
+
export declare function dedupeimages(images: imagedescriptor[]): imagedescriptor[];
|
|
52
|
+
/** Stamps consistent image batch filenames from the reviewed naming rule with a per batch image counter. */
|
|
53
|
+
export declare function imagenames(rule: capturenaming, run: string, step: string, count: number, extension: string): string[];
|
|
54
|
+
/** Normalizes a reviewed lapse plan; an absent format keeps png. */
|
|
55
|
+
export declare function lapseplanof(value: unknown): {
|
|
56
|
+
interval: number;
|
|
57
|
+
duration: number;
|
|
58
|
+
format: captureformat;
|
|
59
|
+
} | undefined;
|
|
60
|
+
/** Ordered lapse frame timestamps starting at zero and stepping the reviewed interval inside the reviewed duration. */
|
|
61
|
+
export declare function lapseframes(plan: {
|
|
62
|
+
interval: number;
|
|
63
|
+
duration: number;
|
|
64
|
+
}): number[];
|
|
65
|
+
/** Normalizes a reviewed conversion directive; an absent payload leaves the step without a directive. */
|
|
66
|
+
export declare function convertdirectiveof(value: unknown): convertdirective | undefined;
|
|
67
|
+
/** Normalizes a reviewed thumbnail directive; an absent payload leaves the step without a directive. */
|
|
68
|
+
export declare function thumbdirectiveof(value: unknown): thumbdirective | undefined;
|
|
69
|
+
/** Nine argument draw geometry of one thumbnail: cover crops to the square and fits inside, contain letterboxes the whole source. */
|
|
70
|
+
export declare function thumbgeometry(source: {
|
|
71
|
+
width: number;
|
|
72
|
+
height: number;
|
|
73
|
+
}, directive: thumbdirective): {
|
|
74
|
+
sx: number;
|
|
75
|
+
sy: number;
|
|
76
|
+
sw: number;
|
|
77
|
+
sh: number;
|
|
78
|
+
dx: number;
|
|
79
|
+
dy: number;
|
|
80
|
+
dw: number;
|
|
81
|
+
dh: number;
|
|
82
|
+
width: number;
|
|
83
|
+
height: number;
|
|
84
|
+
};
|
|
85
|
+
/** Normalizes raw embedded media element entries into mediadatum records with duration, dimensions, codecs and track lists. */
|
|
86
|
+
export declare function mediaentries(raw: Array<Record<string, unknown>>): mediadatum[];
|
|
87
|
+
/** Normalizes raw page asset entries into favicon or logo asset shapes with their byte sizes and declared sizes. */
|
|
88
|
+
export declare function assetentries(raw: Array<Record<string, unknown>>): Array<{
|
|
89
|
+
kind: assetrecord["kind"];
|
|
90
|
+
url: string;
|
|
91
|
+
bytes: number;
|
|
92
|
+
sizes?: string;
|
|
93
|
+
}>;
|
|
94
|
+
/** Normalizes raw stream probe entries into stream summaries with track counts, labels, live states and track details. */
|
|
95
|
+
export declare function streamsummaries(raw: Array<Record<string, unknown>>): Array<Omit<streamrecord, "id" | "runid" | "stepid" | "at">>;
|
|
96
|
+
//# sourceMappingURL=media.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"media.d.ts","sourceRoot":"","sources":["../media.ts"],"names":[],"mappings":"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"}
|
package/dist/memory.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { a11ycapture, agentplan, agentsession, artifactinventoryentry, artifactrecord, auditevent, authrecord, bannerreport, capabilityreport, captchahandoff, capturecounter, clipboardconsentrecord, cleanuprule, cleanuprun, clipentry, clickablemap, closedtab, controltabstate, curatedlist, dataset, derivedselector, detectionrecord, diagnosticreport, dialogdecision, dialogpolicy, downloadrecord, endpointconfig, errorreport, exportedartifact, extractsession, focusevent, formprofile, keyholdstate, mimefilter, mutationevent, navcontrol, navintentrecord, navqueues, navrecord, netlogrecord, observationrecord, pagesignals, planprogress, provenancerecord, quarantineentry, ratelimitstate, readercapture, recenttab, resolutionsummary, retryoutcome, runsettings, safetyverdict, scanhookconfig, sessionsnapshot, sheetendpoint, shotpair, shotrecord, snapshotdiff, stepoutcome, streamstate, submitticket, tabbadge, tabgrouprecord, tablayout, tabmeta, tabwatchevent, taskrules, templateprofile, trailentry, typeaheadpick, waitprofilerecord, watchregistration, wizardstate } from "./types.js";
|
|
1
|
+
import type { a11ycapture, agentplan, agentsession, artifactinventoryentry, artifactrecord, auditevent, authrecord, bannerreport, capabilityreport, captchahandoff, capturecounter, clipboardconsentrecord, cleanuprule, cleanuprun, clipentry, clickablemap, closedtab, controltabstate, curatedlist, dataset, derivedselector, detectionrecord, diagnosticreport, dialogdecision, dialogpolicy, downloadrecord, endpointconfig, errorreport, exportedartifact, extractsession, focusevent, formprofile, imagebatch, keyholdstate, mediarecord, mimefilter, mutationevent, navcontrol, navintentrecord, navqueues, navrecord, netlogrecord, observationrecord, pagesignals, planprogress, provenancerecord, quarantineentry, ratelimitstate, readercapture, recenttab, recordingconsentrecord, recordingrecord, resolutionsummary, retryoutcome, runsettings, safetyverdict, scanhookconfig, sessionsnapshot, sheetendpoint, shotpair, shotrecord, snapshotdiff, stepoutcome, streamstate, submitticket, tabbadge, tabgrouprecord, tablayout, tabmeta, tabwatchevent, taskrules, templateprofile, trailentry, typeaheadpick, waitprofilerecord, 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>;
|
|
@@ -333,6 +333,29 @@ export declare class sessionmemory {
|
|
|
333
333
|
addpair(pair: shotpair): Promise<void>;
|
|
334
334
|
/** Returns the shotpairs of one run resolved through their before records, newest first; an absent run returns every pair. */
|
|
335
335
|
getpairs(runid?: string): Promise<shotpair[]>;
|
|
336
|
+
/** Stores one media record of the 1.1.41 family with its bytes and step linkage, replacing the previous record of that id; the user configured media retention window expires the oldest bytes while the metadata and the recording index always survive. */
|
|
337
|
+
addmedia(record: mediarecord): Promise<void>;
|
|
338
|
+
/** Returns every stored media record, newest first. */
|
|
339
|
+
getmediarecords(): Promise<mediarecord[]>;
|
|
340
|
+
/** Returns the media records filtered by run and kind; an absent filter returns every record. */
|
|
341
|
+
listmedia(filter: {
|
|
342
|
+
runid?: string;
|
|
343
|
+
kind?: string;
|
|
344
|
+
}): Promise<mediarecord[]>;
|
|
345
|
+
/** Returns one media record by its id. */
|
|
346
|
+
getmediarecord(id: string): Promise<mediarecord | undefined>;
|
|
347
|
+
/** Returns one recording with its file reference and frame index by its id. */
|
|
348
|
+
getrecording(id: string): Promise<recordingrecord | undefined>;
|
|
349
|
+
/** Removes one media record by its id; the audit trail keeps its outcome evidence. */
|
|
350
|
+
removemedia(id: string): Promise<void>;
|
|
351
|
+
/** Stores one observed image batch of a downloadimages step, replacing the previous batch of that id. */
|
|
352
|
+
addimagebatch(batch: imagebatch): Promise<void>;
|
|
353
|
+
/** Returns every observed image batch with its filter match counts, newest first. */
|
|
354
|
+
getimagebatches(): Promise<imagebatch[]>;
|
|
355
|
+
/** Stores one recording consent decision of an origin, replacing the previous record of that id. */
|
|
356
|
+
setrecordingconsent(record: recordingconsentrecord): Promise<void>;
|
|
357
|
+
/** Returns every recording consent decision with its prompt and origin, newest first. */
|
|
358
|
+
getrecordingconsents(): Promise<recordingconsentrecord[]>;
|
|
336
359
|
}
|
|
337
360
|
/** Creates identifiers locally without a network dependency. */
|
|
338
361
|
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
|
@@ -99,6 +99,18 @@ export declare function navigationgranted(session: agentsession | undefined, url
|
|
|
99
99
|
export declare function validateurlpattern(value: unknown): policyevaluation;
|
|
100
100
|
/** Validates the reviewed tabquery grammar with url, title, id and pattern matchers; at least one matcher is required. */
|
|
101
101
|
export declare function validatetabquery(value: unknown): policyevaluation;
|
|
102
|
+
/** True when the kind belongs to the media capture family of pdf documents, recordings, images, canvases, streams, assets, lapses, conversions and thumbnails. */
|
|
103
|
+
export declare function ismediakind(kind: actionkind): boolean;
|
|
104
|
+
/** True when the kind records user activity and needs the reviewed recording consent before it starts. */
|
|
105
|
+
export declare function isrecordingkind(kind: actionkind): boolean;
|
|
106
|
+
/** Requires the active tab grant of the live session for every media kind: the session tab and origin must match and the origin grant must cover the active origin. */
|
|
107
|
+
export declare function mediagate(session: agentsession | undefined, tabid: number, origin: string, now: number): policyevaluation;
|
|
108
|
+
/** Requires an approved recording consent prompt before any recording of user activity starts; every start consumes its own prompt. */
|
|
109
|
+
export declare function recordingconsentgranted(step: toolstep): policyevaluation;
|
|
110
|
+
/** Exposes the recording duration window as a user configured choice in milliseconds; an absent window leaves the duration to the reviewed step options with no code ceiling. */
|
|
111
|
+
export declare function recordingwindow(settings: runsettings | undefined): number | undefined;
|
|
112
|
+
/** Keeps the reviewed lapse plan inside the reviewed wait budget: the whole lapse duration must fit the wait window with no code ceiling on either side. */
|
|
113
|
+
export declare function lapsebudgetallowed(interval: number, duration: number, wait: number | undefined): policyevaluation;
|
|
102
114
|
/** Validates a single proposal against the active tab origin and local policy. */
|
|
103
115
|
export declare function validatestep(step: toolstep, origin: string): policyevaluation;
|
|
104
116
|
/** Applies the consent gate immediately before an action reaches the page bridge. */
|
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,EAA2E,cAAc,EAAa,WAAW,EAAc,eAAe,EAAE,gBAAgB,EAAE,eAAe,EAAc,WAAW,EAAE,aAAa,EAAE,QAAQ,EAAiB,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"policy.d.ts","sourceRoot":"","sources":["../policy.ts"],"names":[],"mappings":"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"}
|
package/dist/protocol.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { protocolversion, type agentplan, type bannerreport, type clickablemap, type dataset, type downloadrecord, type errorreport, type extractsession, type focusevent, type formreport, type keyholdstate, type mutationevent, type navstate, type netlogrecord, type observation, type pagesignals, type planproposal, type proposalrequest, type provenancerecord, type quarantineentry, type resolvedtarget, type safetyverdict, type selectorcandidate, type shotpair, type shotrecord, type snapshotdiff, type stepoutcome, type tablayout, type tabreport, type trailentry, type transformrule, type typeaheadpick, type wizardstate } from "./types.js";
|
|
1
|
+
import { protocolversion, type agentplan, type bannerreport, type clickablemap, type dataset, type downloadrecord, type errorreport, type extractsession, type focusevent, type formreport, type imagebatch, type keyholdstate, type mediarecord, type mutationevent, type navstate, type netlogrecord, type observation, type pagesignals, type planproposal, type proposalrequest, type provenancerecord, type quarantineentry, type resolvedtarget, type safetyverdict, type selectorcandidate, type shotpair, type shotrecord, type snapshotdiff, type stepoutcome, type tablayout, type tabreport, type trailentry, type transformrule, type typeaheadpick, type wizardstate } from "./types.js";
|
|
2
2
|
/**
|
|
3
3
|
* Reviewed options grammar shared by every step kind.
|
|
4
4
|
*
|
|
@@ -29,6 +29,8 @@ import { protocolversion, type agentplan, type bannerreport, type clickablemap,
|
|
|
29
29
|
* - files steps attach structured evidence to step details: batch download reports with per file states, resolved paths and checksums, verification match results, netlog records correlated with steps through request ids, clipboard entries with payload hashes and origin provenance (the payload text never appears), quarantine entries with scan verdicts and release refs, capture names stamped from task, step and sequence parts, and cleanup run outcomes with removed and kept counts.
|
|
30
30
|
* - the media capture family adds its parameter grammar: every capture kind (`shotview`, `shotfullpage`, `shotelement`, `shotregion`, `contactsheet`) carries a reviewed `capture` options object with `format` (`png`, `jpeg` or `webp`), `quality` between zero and one hundred, `pixelratio` from one up with no code ceiling, an `annotate` flag and an `exporttarget` of `memory`, `download` or `clipboard`; `shotfullpage` adds reviewed `settle`, `overlap` and `wait` windows that keep the stitching scroll budget inside the reviewed wait window; `shotelement` addresses its element through the step target; `shotregion` requires a reviewed `regionrect` of `x`, `y`, `width` and `height` in css pixels plus the explicit `reviewed` flag, with an optional scrollable `container` selector and `steps` count; `contactsheet` carries reviewed `elements` selectors with an optional `sheet` layout of `cellsize`, `columns` and `label` (`none`, `index`, `selector` or `both`); and a reviewed `naming` rule of `run`, `step`, `sequence` and `kind` segment flags extends the 1.1.39 capture naming rule with the capture kind segment.
|
|
31
31
|
* - capture steps attach structured evidence to step details: shotrecords with record id, run, step, kind, format, geometry and byte size, the stitch tile count of full page captures, shotpair ids of before and after state captures with their action kind, target selector and dom snapshot id, and contact sheet cells with selector labels; the response envelope gains a capture block with the record id, format and byte size, and the capture report carries every stored record and pair.
|
|
32
|
+
* - the media capture part two family adds its parameter grammar: `capturepdf` carries reviewed `pdf` options of `paperwidth` and `paperheight` inches (positive, never capped in code), `margins` of `top`, `right`, `bottom` and `left` inches (negative margins are refused), a positive `scale`, `landscape` and `paginate` flags, optional reviewed break point `selectors` and an `exporttarget` of memory or download; `recordscreen` and `captureaudio` carry reviewed `recording` options of `scope` (`tab` or `run`), positive `fps` and `bitrate` values with no code ceilings, an `audio` flag, a positive `duration` window and a reviewed `consentref` of an approved recording consent prompt; `captureframe` addresses a video element through the step target with an optional `timestamp` in seconds and a `poster` flag; `downloadimages` carries a reviewed `imagefilter` of `selector` scope, `minwidth` and `minheight` thresholds and a `formats` list plus an optional `naming` rule; `shotcanvas` addresses a canvas element through the step target with reviewed capture options; `probestream` carries an optional scope `selector`; `readmedia` and `readassets` carry no parameters; `timelapse` carries a reviewed `lapse` plan of positive `interval` and `duration` windows with a `format` and the lapse duration kept inside the reviewed `wait` budget; `convertimage` carries reviewed `capture` or `captures` ids plus a `convert` directive of `source`, `target` (png, jpeg or webp) and `quality`; and `makethumbs` carries the same capture ids plus a `thumb` directive of positive `size`, `fit` (cover or contain) and `suffix`.
|
|
33
|
+
* - media steps attach structured evidence to step details: pdf records with page count, paper size, margins and byte size, recording records with ids, durations, frame counts and file refs, image batches with filter match counts and deduplicated url lists, frame records with source, timestamp and poster flag, canvas records with context kind, stream probe results with track details, asset lists and ordered lapse frame ids; the response envelope gains a media block with the record id, kind and byte size, and the media report carries every stored media record and image batch.
|
|
32
34
|
*
|
|
33
35
|
* Ambiguous text, aria or name resolutions are refused at execution time with the candidate list so the user can choose.
|
|
34
36
|
*/
|
|
@@ -36,7 +38,7 @@ import { protocolversion, type agentplan, type bannerreport, type clickablemap,
|
|
|
36
38
|
export declare function parseproposal(value: unknown, origin: string): planproposal;
|
|
37
39
|
/** Shapes the only data that may be sent to a user-configured agent endpoint. */
|
|
38
40
|
export declare function requestbody(input: proposalrequest): string;
|
|
39
|
-
/** Wraps one executed step outcome in the versioned response envelope for callers, attaching the matched element summary
|
|
41
|
+
/** Wraps one executed step outcome in the versioned response envelope for callers, attaching the matched element summary, the capture block of capture steps and the media block of media steps for review. */
|
|
40
42
|
export declare function outcomeresponse(input: {
|
|
41
43
|
outcome: stepoutcome;
|
|
42
44
|
plan: agentplan;
|
|
@@ -46,6 +48,11 @@ export declare function outcomeresponse(input: {
|
|
|
46
48
|
format: string;
|
|
47
49
|
bytes: number;
|
|
48
50
|
};
|
|
51
|
+
media?: {
|
|
52
|
+
id: string;
|
|
53
|
+
kind: string;
|
|
54
|
+
bytes: number;
|
|
55
|
+
};
|
|
49
56
|
}): string;
|
|
50
57
|
/** Wraps a clickable map payload with numbered entries in the versioned response envelope. */
|
|
51
58
|
export declare function mapresponse(input: {
|
|
@@ -193,4 +200,13 @@ export declare function capturereport(input: {
|
|
|
193
200
|
records: shotrecord[];
|
|
194
201
|
pairs: shotpair[];
|
|
195
202
|
};
|
|
203
|
+
/** Carries every stored media record of pdf documents, recordings, frames, canvases, stream probes and assets beside the observed image batches in the session context envelope. */
|
|
204
|
+
export declare function mediareport(input: {
|
|
205
|
+
records: mediarecord[];
|
|
206
|
+
images: imagebatch[];
|
|
207
|
+
}): {
|
|
208
|
+
version: typeof protocolversion;
|
|
209
|
+
records: mediarecord[];
|
|
210
|
+
images: imagebatch[];
|
|
211
|
+
};
|
|
196
212
|
//# sourceMappingURL=protocol.d.ts.map
|
package/dist/protocol.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"protocol.d.ts","sourceRoot":"","sources":["../protocol.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,KAAK,SAAS,EAAE,KAAK,YAAY,EAAE,KAAK,YAAY,EAAE,KAAK,OAAO,EAAE,KAAK,cAAc,EAAE,KAAK,WAAW,EAAE,KAAK,cAAc,EAAE,KAAK,UAAU,EAAE,KAAK,UAAU,EAAE,KAAK,YAAY,EAAE,KAAK,aAAa,EAAE,KAAK,QAAQ,EAAE,KAAK,YAAY,EAAE,KAAK,WAAW,EAAE,KAAK,WAAW,EAAE,KAAK,YAAY,EAAE,KAAK,eAAe,EAAE,KAAK,gBAAgB,EAAE,KAAK,eAAe,EAAE,KAAK,cAAc,EAAE,KAAK,aAAa,EAAE,KAAK,iBAAiB,EAAE,KAAK,QAAQ,EAAE,KAAK,UAAU,EAAE,KAAK,YAAY,EAAE,KAAK,WAAW,EAAE,KAAK,SAAS,EAAE,KAAK,SAAS,EAAiB,KAAK,UAAU,EAAE,KAAK,aAAa,EAAE,KAAK,aAAa,EAAE,KAAK,WAAW,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"protocol.d.ts","sourceRoot":"","sources":["../protocol.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,KAAK,SAAS,EAAE,KAAK,YAAY,EAAE,KAAK,YAAY,EAAE,KAAK,OAAO,EAAE,KAAK,cAAc,EAAE,KAAK,WAAW,EAAE,KAAK,cAAc,EAAE,KAAK,UAAU,EAAE,KAAK,UAAU,EAAE,KAAK,UAAU,EAAE,KAAK,YAAY,EAAE,KAAK,WAAW,EAAE,KAAK,aAAa,EAAE,KAAK,QAAQ,EAAE,KAAK,YAAY,EAAE,KAAK,WAAW,EAAE,KAAK,WAAW,EAAE,KAAK,YAAY,EAAE,KAAK,eAAe,EAAE,KAAK,gBAAgB,EAAE,KAAK,eAAe,EAAE,KAAK,cAAc,EAAE,KAAK,aAAa,EAAE,KAAK,iBAAiB,EAAE,KAAK,QAAQ,EAAE,KAAK,UAAU,EAAE,KAAK,YAAY,EAAE,KAAK,WAAW,EAAE,KAAK,SAAS,EAAE,KAAK,SAAS,EAAiB,KAAK,UAAU,EAAE,KAAK,aAAa,EAAE,KAAK,aAAa,EAAE,KAAK,WAAW,EAAE,MAAM,YAAY,CAAC;AAYrrB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AAEH,+GAA+G;AAC/G,wBAAgB,aAAa,CAAC,KAAK,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,GAAG,YAAY,CA6C1E;AAED,iFAAiF;AACjF,wBAAgB,WAAW,CAAC,KAAK,EAAE,eAAe,GAAG,MAAM,CAE1D;AAED,+MAA+M;AAC/M,wBAAgB,eAAe,CAAC,KAAK,EAAE;IAAE,OAAO,EAAE,WAAW,CAAC;IAAC,IAAI,EAAE,SAAS,CAAC;IAAC,cAAc,CAAC,EAAE,cAAc,CAAC;IAAC,OAAO,CAAC,EAAE;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC;IAAC,KAAK,CAAC,EAAE;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAA;CAAE,GAAG,MAAM,CAEvO;AAED,8FAA8F;AAC9F,wBAAgB,WAAW,CAAC,KAAK,EAAE;IAAE,GAAG,EAAE,YAAY,CAAC;IAAC,IAAI,EAAE,SAAS,CAAA;CAAE,GAAG,MAAM,CAEjF;AAED,oGAAoG;AACpG,wBAAgB,cAAc,CAAC,KAAK,EAAE;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,YAAY,EAAE,CAAA;CAAE,GAAG;IAAE,OAAO,EAAE,OAAO,eAAe,CAAC;IAAC,KAAK,EAAE,MAAM,CAAC;IAAC,QAAQ,EAAE,YAAY,EAAE,CAAA;CAAE,CAE5J;AAED,yIAAyI;AACzI,wBAAgB,mBAAmB,CAAC,KAAK,EAAE;IAAE,WAAW,EAAE,WAAW,CAAC;IAAC,IAAI,EAAE,SAAS,CAAA;CAAE,GAAG,MAAM,CAEhG;AAED,gIAAgI;AAChI,wBAAgB,aAAa,CAAC,KAAK,EAAE;IAAE,MAAM,EAAE,KAAK,CAAC,aAAa,GAAG,UAAU,GAAG,YAAY,CAAC,CAAC;IAAC,IAAI,EAAE,SAAS,CAAA;CAAE,GAAG,MAAM,CAE1H;AAED,6IAA6I;AAC7I,wBAAgB,YAAY,CAAC,KAAK,EAAE;IAAE,IAAI,EAAE,YAAY,CAAC;IAAC,IAAI,EAAE,SAAS,CAAA;CAAE,GAAG,MAAM,CAEnF;AAED,qHAAqH;AACrH,wBAAgB,aAAa,CAAC,KAAK,EAAE;IAAE,OAAO,CAAC,EAAE,WAAW,CAAA;CAAE,GAAG;IAAE,OAAO,EAAE,OAAO,eAAe,CAAC;IAAC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAAC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAAC,YAAY,CAAC,EAAE,OAAO,CAAC;IAAC,MAAM,CAAC,EAAE,MAAM,CAAA;CAAE,CASlL;AAED,wGAAwG;AACxG,wBAAgB,gBAAgB,CAAC,KAAK,EAAE;IAAE,UAAU,EAAE,iBAAiB,EAAE,CAAC;IAAC,IAAI,EAAE,SAAS,CAAA;CAAE,GAAG,MAAM,CAEpG;AAED,4HAA4H;AAC5H,wBAAgB,gBAAgB,CAAC,KAAK,EAAE;IAAE,QAAQ,EAAE,QAAQ,CAAC;IAAC,IAAI,EAAE,SAAS,CAAA;CAAE,GAAG,MAAM,CAEvF;AAED,6HAA6H;AAC7H,wBAAgB,WAAW,CAAC,KAAK,EAAE;IAAE,SAAS,CAAC,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,UAAU,EAAE,CAAA;CAAE,GAAG;IAAE,OAAO,EAAE,OAAO,eAAe,CAAC;IAAC,SAAS,CAAC,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,UAAU,EAAE,CAAA;CAAE,CAE5J;AAED,gHAAgH;AAChH,wBAAgB,cAAc,CAAC,KAAK,EAAE;IAAE,QAAQ,EAAE,aAAa,EAAE,CAAC;IAAC,IAAI,EAAE,SAAS,CAAA;CAAE,GAAG,MAAM,CAE5F;AAED,wGAAwG;AACxG,wBAAgB,iBAAiB,CAAC,KAAK,EAAE;IAAE,MAAM,EAAE,SAAS,CAAC;IAAC,IAAI,EAAE,SAAS,CAAA;CAAE,GAAG,MAAM,CAEvF;AAED,+GAA+G;AAC/G,wBAAgB,YAAY,CAAC,KAAK,EAAE;IAAE,OAAO,EAAE,SAAS,EAAE,CAAA;CAAE,GAAG;IAAE,OAAO,EAAE,OAAO,eAAe,CAAC;IAAC,OAAO,EAAE,SAAS,EAAE,CAAA;CAAE,CAEvH;AAED,+HAA+H;AAC/H,wBAAgB,kBAAkB,CAAC,KAAK,EAAE;IAAE,MAAM,EAAE,UAAU,CAAC;IAAC,IAAI,EAAE,SAAS,CAAA;CAAE,GAAG,MAAM,CAEzF;AAED,iIAAiI;AACjI,wBAAgB,mBAAmB,CAAC,KAAK,EAAE;IAAE,MAAM,EAAE,WAAW,CAAC;IAAC,IAAI,EAAE,SAAS,CAAA;CAAE,GAAG,MAAM,CAE3F;AAED,0HAA0H;AAC1H,wBAAgB,YAAY,CAAC,KAAK,EAAE;IAAE,SAAS,CAAC,EAAE,MAAM,CAAC;IAAC,OAAO,EAAE,WAAW,EAAE,CAAC;IAAC,KAAK,EAAE,aAAa,EAAE,CAAA;CAAE,GAAG;IAAE,OAAO,EAAE,OAAO,eAAe,CAAC;IAAC,SAAS,CAAC,EAAE,MAAM,CAAC;IAAC,OAAO,EAAE,WAAW,EAAE,CAAC;IAAC,KAAK,EAAE,aAAa,EAAE,CAAA;CAAE,CAEnN;AAED,iHAAiH;AACjH,wBAAgB,eAAe,CAAC,KAAK,EAAE;IAAE,OAAO,EAAE,OAAO,CAAC;IAAC,IAAI,EAAE,SAAS,CAAC;IAAC,MAAM,CAAC,EAAE,MAAM,CAAA;CAAE,GAAG,MAAM,CAIrG;AAED,yIAAyI;AACzI,wBAAgB,gBAAgB,CAAC,KAAK,EAAE;IAAE,QAAQ,EAAE,cAAc,EAAE,CAAA;CAAE,GAAG;IAAE,OAAO,EAAE,OAAO,eAAe,CAAC;IAAC,QAAQ,EAAE,cAAc,EAAE,CAAA;CAAE,CAEvI;AAED,uJAAuJ;AACvJ,wBAAgB,gBAAgB,CAAC,KAAK,EAAE;IAAE,OAAO,EAAE,gBAAgB,EAAE,CAAA;CAAE,GAAG;IAAE,OAAO,EAAE,OAAO,eAAe,CAAC;IAAC,OAAO,EAAE,gBAAgB,EAAE,CAAA;CAAE,CAEzI;AAED,8GAA8G;AAC9G,wBAAgB,gBAAgB,CAAC,KAAK,EAAE,aAAa,EAAE,GAAG,MAAM,CAE/D;AAED,4HAA4H;AAC5H,wBAAgB,cAAc,CAAC,KAAK,EAAE;IAAE,SAAS,EAAE,cAAc,EAAE,CAAC;IAAC,IAAI,EAAE,SAAS,CAAA;CAAE,GAAG,MAAM,CAE9F;AAED,gIAAgI;AAChI,wBAAgB,YAAY,CAAC,KAAK,EAAE;IAAE,OAAO,EAAE,YAAY,EAAE,CAAA;CAAE,GAAG;IAAE,OAAO,EAAE,OAAO,eAAe,CAAC;IAAC,OAAO,EAAE,YAAY,EAAE,CAAA;CAAE,CAE7H;AAED,gHAAgH;AAChH,wBAAgB,gBAAgB,CAAC,KAAK,EAAE;IAAE,OAAO,EAAE,eAAe,EAAE,CAAA;CAAE,GAAG;IAAE,OAAO,EAAE,OAAO,eAAe,CAAC;IAAC,OAAO,EAAE,eAAe,EAAE,CAAA;CAAE,CAEvI;AAED,2IAA2I;AAC3I,wBAAgB,aAAa,CAAC,KAAK,EAAE;IAAE,OAAO,EAAE,UAAU,EAAE,CAAC;IAAC,KAAK,EAAE,QAAQ,EAAE,CAAA;CAAE,GAAG;IAAE,OAAO,EAAE,OAAO,eAAe,CAAC;IAAC,OAAO,EAAE,UAAU,EAAE,CAAC;IAAC,KAAK,EAAE,QAAQ,EAAE,CAAA;CAAE,CAEhK;AAED,oLAAoL;AACpL,wBAAgB,WAAW,CAAC,KAAK,EAAE;IAAE,OAAO,EAAE,WAAW,EAAE,CAAC;IAAC,MAAM,EAAE,UAAU,EAAE,CAAA;CAAE,GAAG;IAAE,OAAO,EAAE,OAAO,eAAe,CAAC;IAAC,OAAO,EAAE,WAAW,EAAE,CAAC;IAAC,MAAM,EAAE,UAAU,EAAE,CAAA;CAAE,CAEtK"}
|
package/dist/types.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export declare const protocolversion: "1.1.
|
|
1
|
+
export declare const protocolversion: "1.1.41";
|
|
2
2
|
/** Every reviewed action kind. Read kinds observe, interaction kinds move focus, sensitive kinds change page or browser state. */
|
|
3
|
-
export type actionkind = "observe" | "inspect" | "extract" | "wait" | "waitfor" | "waittext" | "readattribute" | "readstyle" | "readgeometry" | "readvalue" | "readtext" | "readhtml" | "countelements" | "readtable" | "readlinks" | "readimages" | "readmeta" | "readforms" | "readstorage" | "highlight" | "tablist" | "windowlist" | "tabsnapshot" | "focus" | "scroll" | "hover" | "clickdeep" | "rightclick" | "doubleclick" | "scrollpage" | "scrollby" | "scrollend" | "scrolltop" | "fullscreen" | "zoomset" | "click" | "type" | "navigate" | "select" | "presskey" | "drag" | "drop" | "upload" | "clear" | "check" | "uncheck" | "toggle" | "submit" | "reload" | "back" | "forward" | "writestorage" | "setattribute" | "removeattribute" | "evaluate" | "tabcreate" | "tabactivate" | "tabclose" | "tabreload" | "windowcreate" | "windowclose" | "windowresize" | "downloadfile" | "movepointer" | "clickpoint" | "shiftclick" | "clicktext" | "clickaria" | "clickname" | "resolvexpath" | "typetime" | "appendtext" | "setvalue" | "typeedit" | "keyhold" | "keyrelease" | "submitsearch" | "selectmulti" | "chooseradio" | "setslider" | "setdate" | "setcolor" | "expanddetails" | "dismissdialog" | "pierceshadow" | "enterframe" | "retryaction" | "mapclicks" | "verifyvisible" | "verifyenabled" | "a11ytree" | "readvisible" | "readertree" | "detectlists" | "detecttables" | "readjson" | "watchmutate" | "waitquiet" | "watchbanner" | "detectinfinitescroll" | "detectvirtual" | "detectlazy" | "readscrollpos" | "readlang" | "readoutline" | "countpages" | "listshadow" | "listframes" | "classifypage" | "fingerprintsection" | "diffsnapshots" | "readselection" | "watchfocus" | "detectsticky" | "detectscrolllock" | "readopengraph" | "detectlanguage" | "deriveselector" | "openlink" | "openprivate" | "reloadcache" | "stopnav" | "waitload" | "waiturl" | "followlink" | "spanav" | "spawait" | "rewritequery" | "setfragment" | "navlist" | "navprofile" | "detecthttp" | "readredirects" | "readfinalurl" | "handleauth" | "printpdf" | "prefetch" | "preconnect" | "deeplink" | "reopentab" | "trailaudit" | "pausenav" | "navintent" | "navrate" | "openclipboard" | "checksafe" | "batchopen" | "querytabs" | "duplicatetab" | "closepattern" | "pintab" | "mutetab" | "movetab" | "movetabwindow" | "grouptabs" | "colorgroup" | "collapsegroup" | "discardtab" | "reloadtabs" | "zoomin" | "zoomout" | "watchtab" | "switchtab" | "maximizewindow" | "minimizewindow" | "restorewindow" | "focuswindow" | "scratchwindow" | "incognitowindow" | "restoretab" | "savelayout" | "restorelayout" | "findclones" | "searchtabs" | "badgetab" | "attachmeta" | "listaudio" | "reopenrun" | "snapshotsession" | "fillform" | "filllabel" | "fillplaceholder" | "detectfields" | "generatevalues" | "saveprofiles" | "asksubmit" | "submitform" | "readerrors" | "retryform" | "runwizard" | "selectchain" | "picktypeahead" | "pickdate" | "attachfile" | "handoffcaptcha" | "fillcard" | "fillcode" | "consentpassword" | "skiphoneypot" | "detectlogin" | "detecttemplate" | "scrapetable" | "exportcsv" | "exportjson" | "exportexcel" | "copytable" | "pushsheets" | "importcsv" | "looprows" | "transformvalues" | "deduperows" | "paginateextract" | "mergepages" | "stamplerows" | "previewgrid" | "streamdisk" | "resumeextract" | "logprovenance" | "batchdownload" | "pausedownload" | "resumedownload" | "verifydownload" | "interceptmime" | "exportnetlog" | "readclipboard" | "writeclipboard" | "copyscreen" | "quarantinedownload" | "scanvirus" | "namecaptures" | "cleanupartifacts" | "shotview" | "shotfullpage" | "shotelement" | "shotregion" | "contactsheet";
|
|
3
|
+
export type actionkind = "observe" | "inspect" | "extract" | "wait" | "waitfor" | "waittext" | "readattribute" | "readstyle" | "readgeometry" | "readvalue" | "readtext" | "readhtml" | "countelements" | "readtable" | "readlinks" | "readimages" | "readmeta" | "readforms" | "readstorage" | "highlight" | "tablist" | "windowlist" | "tabsnapshot" | "focus" | "scroll" | "hover" | "clickdeep" | "rightclick" | "doubleclick" | "scrollpage" | "scrollby" | "scrollend" | "scrolltop" | "fullscreen" | "zoomset" | "click" | "type" | "navigate" | "select" | "presskey" | "drag" | "drop" | "upload" | "clear" | "check" | "uncheck" | "toggle" | "submit" | "reload" | "back" | "forward" | "writestorage" | "setattribute" | "removeattribute" | "evaluate" | "tabcreate" | "tabactivate" | "tabclose" | "tabreload" | "windowcreate" | "windowclose" | "windowresize" | "downloadfile" | "movepointer" | "clickpoint" | "shiftclick" | "clicktext" | "clickaria" | "clickname" | "resolvexpath" | "typetime" | "appendtext" | "setvalue" | "typeedit" | "keyhold" | "keyrelease" | "submitsearch" | "selectmulti" | "chooseradio" | "setslider" | "setdate" | "setcolor" | "expanddetails" | "dismissdialog" | "pierceshadow" | "enterframe" | "retryaction" | "mapclicks" | "verifyvisible" | "verifyenabled" | "a11ytree" | "readvisible" | "readertree" | "detectlists" | "detecttables" | "readjson" | "watchmutate" | "waitquiet" | "watchbanner" | "detectinfinitescroll" | "detectvirtual" | "detectlazy" | "readscrollpos" | "readlang" | "readoutline" | "countpages" | "listshadow" | "listframes" | "classifypage" | "fingerprintsection" | "diffsnapshots" | "readselection" | "watchfocus" | "detectsticky" | "detectscrolllock" | "readopengraph" | "detectlanguage" | "deriveselector" | "openlink" | "openprivate" | "reloadcache" | "stopnav" | "waitload" | "waiturl" | "followlink" | "spanav" | "spawait" | "rewritequery" | "setfragment" | "navlist" | "navprofile" | "detecthttp" | "readredirects" | "readfinalurl" | "handleauth" | "printpdf" | "prefetch" | "preconnect" | "deeplink" | "reopentab" | "trailaudit" | "pausenav" | "navintent" | "navrate" | "openclipboard" | "checksafe" | "batchopen" | "querytabs" | "duplicatetab" | "closepattern" | "pintab" | "mutetab" | "movetab" | "movetabwindow" | "grouptabs" | "colorgroup" | "collapsegroup" | "discardtab" | "reloadtabs" | "zoomin" | "zoomout" | "watchtab" | "switchtab" | "maximizewindow" | "minimizewindow" | "restorewindow" | "focuswindow" | "scratchwindow" | "incognitowindow" | "restoretab" | "savelayout" | "restorelayout" | "findclones" | "searchtabs" | "badgetab" | "attachmeta" | "listaudio" | "reopenrun" | "snapshotsession" | "fillform" | "filllabel" | "fillplaceholder" | "detectfields" | "generatevalues" | "saveprofiles" | "asksubmit" | "submitform" | "readerrors" | "retryform" | "runwizard" | "selectchain" | "picktypeahead" | "pickdate" | "attachfile" | "handoffcaptcha" | "fillcard" | "fillcode" | "consentpassword" | "skiphoneypot" | "detectlogin" | "detecttemplate" | "scrapetable" | "exportcsv" | "exportjson" | "exportexcel" | "copytable" | "pushsheets" | "importcsv" | "looprows" | "transformvalues" | "deduperows" | "paginateextract" | "mergepages" | "stamplerows" | "previewgrid" | "streamdisk" | "resumeextract" | "logprovenance" | "batchdownload" | "pausedownload" | "resumedownload" | "verifydownload" | "interceptmime" | "exportnetlog" | "readclipboard" | "writeclipboard" | "copyscreen" | "quarantinedownload" | "scanvirus" | "namecaptures" | "cleanupartifacts" | "shotview" | "shotfullpage" | "shotelement" | "shotregion" | "contactsheet" | "capturepdf" | "recordscreen" | "captureaudio" | "captureframe" | "downloadimages" | "shotcanvas" | "probestream" | "readmedia" | "readassets" | "timelapse" | "convertimage" | "makethumbs";
|
|
4
4
|
export type actionrisk = "read" | "interaction" | "sensitive";
|
|
5
5
|
export type planstate = "draft" | "pending" | "approved" | "rejected" | "expired" | "completed" | "cancelled";
|
|
6
|
-
export type auditkind = "configure" | "session" | "observe" | "proposal" | "approval" | "action" | "error" | "stop" | "pause" | "resume" | "complete" | "capability" | "tab" | "window" | "download" | "pointer" | "dialog" | "hold" | "retry" | "observation" | "watch" | "diff" | "navigation" | "redirect" | "auth" | "prefetch" | "rate" | "group" | "layout" | "discard" | "badge" | "fill" | "submit" | "consent" | "handoff" | "scrape" | "export" | "stream" | "provenance" | "resume" | "intercept" | "clipboard" | "quarantine" | "cleanup" | "capture";
|
|
6
|
+
export type auditkind = "configure" | "session" | "observe" | "proposal" | "approval" | "action" | "error" | "stop" | "pause" | "resume" | "complete" | "capability" | "tab" | "window" | "download" | "pointer" | "dialog" | "hold" | "retry" | "observation" | "watch" | "diff" | "navigation" | "redirect" | "auth" | "prefetch" | "rate" | "group" | "layout" | "discard" | "badge" | "fill" | "submit" | "consent" | "handoff" | "scrape" | "export" | "stream" | "provenance" | "resume" | "intercept" | "clipboard" | "quarantine" | "cleanup" | "capture" | "media";
|
|
7
7
|
/** Observation mode classes: passive capture, watched lifetimes and diffing passes. */
|
|
8
8
|
export type observationmode = "passive" | "watching" | "diffing";
|
|
9
9
|
export interface toolstep {
|
|
@@ -104,6 +104,8 @@ export interface capabilityreport {
|
|
|
104
104
|
clipboardwrite: boolean;
|
|
105
105
|
/** Capture kinds listed among the available capabilities because they need no optional permission beyond the active tab. */
|
|
106
106
|
captures?: string[];
|
|
107
|
+
/** Media capture part two kinds listed among the available capabilities. */
|
|
108
|
+
media?: string[];
|
|
107
109
|
reportedat: number;
|
|
108
110
|
}
|
|
109
111
|
/** Structured result of one executed step, kept with configurable retention. */
|
|
@@ -128,6 +130,10 @@ export interface runsettings {
|
|
|
128
130
|
netlogretention?: number;
|
|
129
131
|
/** Retention window for stored capture bytes; an absent value keeps every byte and the metadata always survives. */
|
|
130
132
|
captureretention?: number;
|
|
133
|
+
/** Retention window for stored media bytes such as pdf documents, frames, canvases and recordings; an absent value keeps every byte. */
|
|
134
|
+
mediaretention?: number;
|
|
135
|
+
/** Recording duration window in milliseconds for recordscreen and captureaudio; an absent window leaves the duration to the reviewed step options. */
|
|
136
|
+
recordingwindow?: number;
|
|
131
137
|
/** Capture policy of the run: off, manual, annotated or beforeafter state pairs around actions. */
|
|
132
138
|
capturepolicy?: capturepolicy;
|
|
133
139
|
/** True when the pinned control tab with the live task feed stays open. */
|
|
@@ -1063,4 +1069,203 @@ export interface shotpair {
|
|
|
1063
1069
|
domsnapshotid?: string;
|
|
1064
1070
|
at: number;
|
|
1065
1071
|
}
|
|
1072
|
+
/** One stored pdf document record of a capturepdf step with its page count, reviewed page size, margins and byte size. */
|
|
1073
|
+
export interface pdfrecord {
|
|
1074
|
+
id: string;
|
|
1075
|
+
runid: string;
|
|
1076
|
+
stepid: string;
|
|
1077
|
+
pages: number;
|
|
1078
|
+
/** Paper size in pdf points after the landscape swap. */
|
|
1079
|
+
pagewidth: number;
|
|
1080
|
+
pageheight: number;
|
|
1081
|
+
margins: {
|
|
1082
|
+
top: number;
|
|
1083
|
+
right: number;
|
|
1084
|
+
bottom: number;
|
|
1085
|
+
left: number;
|
|
1086
|
+
};
|
|
1087
|
+
landscape: boolean;
|
|
1088
|
+
scale: number;
|
|
1089
|
+
bytes: number;
|
|
1090
|
+
at: number;
|
|
1091
|
+
/** Stored pdf bytes as a data url while the retention window still covers the record. */
|
|
1092
|
+
dataurl?: string;
|
|
1093
|
+
name?: string;
|
|
1094
|
+
/** True once the retention window expired the bytes; the metadata stays for the audit trail. */
|
|
1095
|
+
bytesexpired?: boolean;
|
|
1096
|
+
}
|
|
1097
|
+
/** Reviewed pdf print options: paper width and height in inches, margins in inches, scale, landscape and the paginate flag; every bound stays a user choice with no code cap. */
|
|
1098
|
+
export interface pdfoptions {
|
|
1099
|
+
paperwidth?: number;
|
|
1100
|
+
paperheight?: number;
|
|
1101
|
+
margins?: {
|
|
1102
|
+
top: number;
|
|
1103
|
+
right: number;
|
|
1104
|
+
bottom: number;
|
|
1105
|
+
left: number;
|
|
1106
|
+
};
|
|
1107
|
+
scale?: number;
|
|
1108
|
+
landscape?: boolean;
|
|
1109
|
+
paginate?: boolean;
|
|
1110
|
+
}
|
|
1111
|
+
/** One stored recording of user activity with its tab, start and end times, format and duration; the frame index survives the byte expiry. */
|
|
1112
|
+
export interface recordingrecord {
|
|
1113
|
+
id: string;
|
|
1114
|
+
runid: string;
|
|
1115
|
+
stepid: string;
|
|
1116
|
+
tabid: number;
|
|
1117
|
+
kind: "screen" | "audio";
|
|
1118
|
+
scope: "tab" | "run";
|
|
1119
|
+
format: string;
|
|
1120
|
+
startedat: number;
|
|
1121
|
+
endedat?: number;
|
|
1122
|
+
duration?: number;
|
|
1123
|
+
fps?: number;
|
|
1124
|
+
bitrate?: number;
|
|
1125
|
+
audio?: boolean;
|
|
1126
|
+
/** Ordered frame capture ids of a derived frame sequence recording. */
|
|
1127
|
+
frames?: string[];
|
|
1128
|
+
/** File reference of the finished artifact routed through the reviewed download flow. */
|
|
1129
|
+
file?: string;
|
|
1130
|
+
at: number;
|
|
1131
|
+
/** Byte size of the derived artifact manifest while the retention window still covers the record. */
|
|
1132
|
+
bytes?: number;
|
|
1133
|
+
bytesexpired?: boolean;
|
|
1134
|
+
}
|
|
1135
|
+
/** Reviewed recording options: scope tab or run, fps, bitrate and the audio flag; fps and bitrate stay user choices with no code ceiling. */
|
|
1136
|
+
export interface recordingoptions {
|
|
1137
|
+
scope?: "tab" | "run";
|
|
1138
|
+
fps?: number;
|
|
1139
|
+
bitrate?: number;
|
|
1140
|
+
audio?: boolean;
|
|
1141
|
+
}
|
|
1142
|
+
/** One still frame grabbed from a video element with its source element, reviewed timestamp and poster flag. */
|
|
1143
|
+
export interface framerecord {
|
|
1144
|
+
id: string;
|
|
1145
|
+
runid: string;
|
|
1146
|
+
stepid: string;
|
|
1147
|
+
source: string;
|
|
1148
|
+
timestamp: number;
|
|
1149
|
+
poster: boolean;
|
|
1150
|
+
format: captureformat;
|
|
1151
|
+
width: number;
|
|
1152
|
+
height: number;
|
|
1153
|
+
at: number;
|
|
1154
|
+
dataurl?: string;
|
|
1155
|
+
name?: string;
|
|
1156
|
+
bytesexpired?: boolean;
|
|
1157
|
+
}
|
|
1158
|
+
/** One image observed on the page with its url, alt text, dimensions, byte size and mime type. */
|
|
1159
|
+
export interface imagedescriptor {
|
|
1160
|
+
url: string;
|
|
1161
|
+
alt: string;
|
|
1162
|
+
width: number;
|
|
1163
|
+
height: number;
|
|
1164
|
+
bytes: number;
|
|
1165
|
+
mime: string;
|
|
1166
|
+
}
|
|
1167
|
+
/** Reviewed image filter: selector scope, minimum dimensions and a format list; batch sizes and thresholds stay user choices with no code ceilings. */
|
|
1168
|
+
export interface imagefilter {
|
|
1169
|
+
selector?: string;
|
|
1170
|
+
minwidth?: number;
|
|
1171
|
+
minheight?: number;
|
|
1172
|
+
formats?: string[];
|
|
1173
|
+
}
|
|
1174
|
+
/** One captured canvas content record with its element, context kind and data url. */
|
|
1175
|
+
export interface canvasrecord {
|
|
1176
|
+
id: string;
|
|
1177
|
+
runid: string;
|
|
1178
|
+
stepid: string;
|
|
1179
|
+
element: string;
|
|
1180
|
+
context: "2d" | "webgl";
|
|
1181
|
+
width: number;
|
|
1182
|
+
height: number;
|
|
1183
|
+
format: captureformat;
|
|
1184
|
+
at: number;
|
|
1185
|
+
dataurl?: string;
|
|
1186
|
+
name?: string;
|
|
1187
|
+
bytesexpired?: boolean;
|
|
1188
|
+
}
|
|
1189
|
+
/** One webrtc media stream probe record with its kind, track count, label and live flag. */
|
|
1190
|
+
export interface streamrecord {
|
|
1191
|
+
id: string;
|
|
1192
|
+
runid: string;
|
|
1193
|
+
stepid: string;
|
|
1194
|
+
kind: string;
|
|
1195
|
+
tracks: number;
|
|
1196
|
+
label: string;
|
|
1197
|
+
live: boolean;
|
|
1198
|
+
at: number;
|
|
1199
|
+
/** Track details of the probe: kind, label, settings and ready state. */
|
|
1200
|
+
detail?: Array<{
|
|
1201
|
+
kind: string;
|
|
1202
|
+
label: string;
|
|
1203
|
+
width?: number;
|
|
1204
|
+
height?: number;
|
|
1205
|
+
framerate?: number;
|
|
1206
|
+
state: string;
|
|
1207
|
+
}>;
|
|
1208
|
+
}
|
|
1209
|
+
/** One embedded media source datum with its source url, mime type, duration, dimensions and codecs. */
|
|
1210
|
+
export interface mediadatum {
|
|
1211
|
+
url: string;
|
|
1212
|
+
mime: string;
|
|
1213
|
+
duration: number;
|
|
1214
|
+
width: number;
|
|
1215
|
+
height: number;
|
|
1216
|
+
codecs: string;
|
|
1217
|
+
tracks: string[];
|
|
1218
|
+
}
|
|
1219
|
+
/** One collected page asset of kind favicon or logo with its url and byte size. */
|
|
1220
|
+
export interface assetrecord {
|
|
1221
|
+
id: string;
|
|
1222
|
+
runid: string;
|
|
1223
|
+
stepid: string;
|
|
1224
|
+
kind: "favicon" | "logo";
|
|
1225
|
+
url: string;
|
|
1226
|
+
bytes: number;
|
|
1227
|
+
/** Declared icon sizes of the asset, for example 32x32 or any. */
|
|
1228
|
+
sizes?: string;
|
|
1229
|
+
at: number;
|
|
1230
|
+
}
|
|
1231
|
+
/** Reviewed time lapse plan: interval, duration and output format; both windows stay user choices with no code ceilings. */
|
|
1232
|
+
export interface lapseplan {
|
|
1233
|
+
interval: number;
|
|
1234
|
+
duration: number;
|
|
1235
|
+
format: captureformat;
|
|
1236
|
+
}
|
|
1237
|
+
/** Reviewed image conversion directive: source format, target format and quality. */
|
|
1238
|
+
export interface convertdirective {
|
|
1239
|
+
source?: captureformat;
|
|
1240
|
+
target: captureformat;
|
|
1241
|
+
quality?: number;
|
|
1242
|
+
}
|
|
1243
|
+
/** Reviewed thumbnail directive: size, fit and naming suffix; sizes stay user choices with no fixed set. */
|
|
1244
|
+
export interface thumbdirective {
|
|
1245
|
+
size: number;
|
|
1246
|
+
fit: "cover" | "contain";
|
|
1247
|
+
suffix: string;
|
|
1248
|
+
}
|
|
1249
|
+
/** One image batch observed by downloadimages with its filter match counts and the observed image descriptors. */
|
|
1250
|
+
export interface imagebatch {
|
|
1251
|
+
id: string;
|
|
1252
|
+
runid: string;
|
|
1253
|
+
stepid: string;
|
|
1254
|
+
images: imagedescriptor[];
|
|
1255
|
+
matched: number;
|
|
1256
|
+
downloaded: number;
|
|
1257
|
+
at: number;
|
|
1258
|
+
}
|
|
1259
|
+
/** One recording consent decision persisted per origin; every recordscreen and captureaudio start needs its own approved prompt. */
|
|
1260
|
+
export interface recordingconsentrecord {
|
|
1261
|
+
id: string;
|
|
1262
|
+
prompt: string;
|
|
1263
|
+
origin: string;
|
|
1264
|
+
stepid: string;
|
|
1265
|
+
approved?: boolean;
|
|
1266
|
+
usedat?: number;
|
|
1267
|
+
at: number;
|
|
1268
|
+
}
|
|
1269
|
+
/** The union of media records stored per run: pdf documents, recordings, video frames, canvas contents, stream probes and page assets. */
|
|
1270
|
+
export type mediarecord = pdfrecord | recordingrecord | framerecord | canvasrecord | streamrecord | assetrecord;
|
|
1066
1271
|
//# sourceMappingURL=types.d.ts.map
|