doc-detective-common 4.18.0 → 4.20.0
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/dist/index.cjs +87752 -6953
- package/dist/schemas/schemas.json +87752 -6953
- package/dist/types/generated/closeSurface_v3.d.ts +83 -17
- package/dist/types/generated/closeSurface_v3.d.ts.map +1 -1
- package/dist/types/generated/config_v3.d.ts +24 -0
- package/dist/types/generated/config_v3.d.ts.map +1 -1
- package/dist/types/generated/context_v3.d.ts +24 -0
- package/dist/types/generated/context_v3.d.ts.map +1 -1
- package/dist/types/generated/dragAndDrop_v3.d.ts +2 -2
- package/dist/types/generated/goTo_v3.d.ts +2 -2
- package/dist/types/generated/record_v3.d.ts +2 -2
- package/dist/types/generated/report_v3.d.ts +24 -0
- package/dist/types/generated/report_v3.d.ts.map +1 -1
- package/dist/types/generated/resolvedTests_v3.d.ts +48 -0
- package/dist/types/generated/resolvedTests_v3.d.ts.map +1 -1
- package/dist/types/generated/runBrowserScript_v3.d.ts +2 -2
- package/dist/types/generated/screenshot_v3.d.ts +42 -5
- package/dist/types/generated/screenshot_v3.d.ts.map +1 -1
- package/dist/types/generated/spec_v3.d.ts +24 -0
- package/dist/types/generated/spec_v3.d.ts.map +1 -1
- package/dist/types/generated/startSurface_v3.d.ts +108 -0
- package/dist/types/generated/startSurface_v3.d.ts.map +1 -0
- package/dist/types/generated/startSurface_v3.js +7 -0
- package/dist/types/generated/startSurface_v3.js.map +1 -0
- package/dist/types/generated/step_v3.d.ts +548 -123
- package/dist/types/generated/step_v3.d.ts.map +1 -1
- package/dist/types/generated/surface_v3.d.ts +37 -4
- package/dist/types/generated/surface_v3.d.ts.map +1 -1
- package/dist/types/generated/test_v3.d.ts +2023 -1037
- package/dist/types/generated/test_v3.d.ts.map +1 -1
- package/dist/types/generated/type_v3.d.ts +62 -12
- package/dist/types/generated/type_v3.d.ts.map +1 -1
- package/dist/types/generated/waitUntil_v3.d.ts +22 -8
- package/dist/types/generated/waitUntil_v3.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -13,14 +13,14 @@ export type TypeKeysSimple = string | string[];
|
|
|
13
13
|
export type TypeKeysDetailed = {
|
|
14
14
|
keys: TypeKeysSimple1;
|
|
15
15
|
/**
|
|
16
|
-
* Delay in milliseconds between each key press during a recording, and between each keystroke sent to a process surface.
|
|
16
|
+
* Delay in milliseconds between each key press during a recording, and between each keystroke sent to a process surface. Not applied on app surfaces in this phase — the native driver types the value atomically.
|
|
17
17
|
*/
|
|
18
18
|
inputDelay?: number;
|
|
19
19
|
surface?: Surface;
|
|
20
20
|
/**
|
|
21
|
-
* After sending the keys, wait until the surface is ready. Requires a `surface`; the allowed conditions depend on the surface kind: a process surface accepts `stdio`/`delayMs`, a browser surface accepts `networkIdleTime`/`domIdleTime`/`find`. No condition applies by default.
|
|
21
|
+
* After sending the keys, wait until the surface is ready. Requires a `surface`; the allowed conditions depend on the surface kind: a process surface accepts `stdio`/`delayMs`, a browser surface accepts `networkIdleTime`/`domIdleTime`/`find`, an app surface accepts `delayMs`/`find`. No condition applies by default.
|
|
22
22
|
*/
|
|
23
|
-
waitUntil?: ProcessReadiness | BrowserReadiness;
|
|
23
|
+
waitUntil?: ProcessReadiness | BrowserReadiness | AppReadiness;
|
|
24
24
|
/**
|
|
25
25
|
* Maximum time in milliseconds to wait for `waitUntil` after sending the keys.
|
|
26
26
|
*/
|
|
@@ -55,15 +55,15 @@ export type TypeKeysDetailed = {
|
|
|
55
55
|
* Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax.
|
|
56
56
|
*/
|
|
57
57
|
elementAria?: string;
|
|
58
|
-
} & WaitUntilRequiresASurface & AProcessSurfaceForbidsElementTargeting & AProcessSurfaceTakesProcessReadiness & ABrowserSurfaceTakesBrowserReadiness & ABrowserEngineStringSurfaceTakesBrowserReadiness;
|
|
58
|
+
} & WaitUntilRequiresASurface & AProcessSurfaceForbidsElementTargeting & AProcessSurfaceTakesProcessReadiness & ABrowserSurfaceTakesBrowserReadiness & AnAppSurfaceTakesAppReadiness & ABrowserEngineStringSurfaceTakesBrowserReadiness;
|
|
59
59
|
/**
|
|
60
60
|
* Sequence of keys to enter.
|
|
61
61
|
*/
|
|
62
62
|
export type TypeKeysSimple1 = string | string[];
|
|
63
63
|
/**
|
|
64
|
-
* The surface a step acts on. Omit to act on the active surface. Supports background processes
|
|
64
|
+
* The surface a step acts on. Omit to act on the active surface. Supports background processes, browser windows/tabs, and native app windows.
|
|
65
65
|
*/
|
|
66
|
-
export type Surface = SurfaceByName | ProcessSurface | BrowserSurface;
|
|
66
|
+
export type Surface = SurfaceByName | ProcessSurface | BrowserSurface | AppSurface;
|
|
67
67
|
/**
|
|
68
68
|
* Name of the surface. A browser engine keyword (chrome|firefox|safari|webkit|edge) targets that browser; any other string names a background process. To target a browser window or tab, use the object form ({ "browser": …, "window": …, "tab": … }) — a plain string is never a window/tab name.
|
|
69
69
|
*/
|
|
@@ -92,6 +92,30 @@ export type ByIndex1 = number;
|
|
|
92
92
|
* Name assigned when the window/tab was opened (goTo `newTab`/`newWindow`). The integer branch is listed first because Ajv validates with coerceTypes — string-first would coerce integer indexes into name strings.
|
|
93
93
|
*/
|
|
94
94
|
export type ByName1 = string;
|
|
95
|
+
/**
|
|
96
|
+
* Which app window to act on. Omit to use the active window. Apps have windows, no tabs.
|
|
97
|
+
*/
|
|
98
|
+
export type AppWindowSelector = ByIndex2 | ByName2 | ByCriteria2;
|
|
99
|
+
/**
|
|
100
|
+
* Index in creation order. Negative counts from the end; `-1` is the newest (e.g. a dialog the app just opened).
|
|
101
|
+
*/
|
|
102
|
+
export type ByIndex2 = number;
|
|
103
|
+
/**
|
|
104
|
+
* Assigned window name. The integer branch is listed first because Ajv validates with coerceTypes — string-first would coerce integer indexes into name strings.
|
|
105
|
+
*/
|
|
106
|
+
export type ByName2 = string;
|
|
107
|
+
/**
|
|
108
|
+
* Wait for a specific element to be present. At least one finding field must be specified.
|
|
109
|
+
*/
|
|
110
|
+
export type ElementCriteria = {
|
|
111
|
+
[k: string]: unknown;
|
|
112
|
+
};
|
|
113
|
+
/**
|
|
114
|
+
* Wait for a specific element to be present. At least one finding field must be specified.
|
|
115
|
+
*/
|
|
116
|
+
export type ElementCriteria1 = {
|
|
117
|
+
[k: string]: unknown;
|
|
118
|
+
};
|
|
95
119
|
export interface ProcessSurface {
|
|
96
120
|
/**
|
|
97
121
|
* Name of a background process started by a runShell/runCode `background` step.
|
|
@@ -100,11 +124,11 @@ export interface ProcessSurface {
|
|
|
100
124
|
}
|
|
101
125
|
export interface BrowserSurface {
|
|
102
126
|
/**
|
|
103
|
-
* Browser engine.
|
|
127
|
+
* Browser engine. Selects the browser surface with that engine (or the one named by `name`). A goTo step opens the browser if it isn't open yet; other steps require it to already be open.
|
|
104
128
|
*/
|
|
105
129
|
browser: "chrome" | "firefox" | "safari" | "webkit" | "edge";
|
|
106
130
|
/**
|
|
107
|
-
* Name of the browser surface.
|
|
131
|
+
* Name of the browser surface. Defaults to the engine name (the context's default browser registers under its engine). Assign distinct names to drive multiple browsers at once, including several of the same engine.
|
|
108
132
|
*/
|
|
109
133
|
name?: string;
|
|
110
134
|
window?: WindowTabSelector;
|
|
@@ -146,6 +170,27 @@ export interface ByCriteria1 {
|
|
|
146
170
|
*/
|
|
147
171
|
url?: string;
|
|
148
172
|
}
|
|
173
|
+
export interface AppSurface {
|
|
174
|
+
/**
|
|
175
|
+
* Name of an app surface opened by `startSurface` (its `name`, or the default derived from the app identifier).
|
|
176
|
+
*/
|
|
177
|
+
app: string;
|
|
178
|
+
window?: AppWindowSelector;
|
|
179
|
+
}
|
|
180
|
+
export interface ByCriteria2 {
|
|
181
|
+
/**
|
|
182
|
+
* Assigned window name.
|
|
183
|
+
*/
|
|
184
|
+
name?: string;
|
|
185
|
+
/**
|
|
186
|
+
* Index in creation order. Negative counts from the end.
|
|
187
|
+
*/
|
|
188
|
+
index?: number;
|
|
189
|
+
/**
|
|
190
|
+
* Window title to match. Substring, or /regex/.
|
|
191
|
+
*/
|
|
192
|
+
title?: string;
|
|
193
|
+
}
|
|
149
194
|
export interface ProcessReadiness {
|
|
150
195
|
/**
|
|
151
196
|
* Wait until combined stdout+stderr matches. Substring, or /regex/.
|
|
@@ -165,12 +210,14 @@ export interface BrowserReadiness {
|
|
|
165
210
|
* Wait for DOM mutations to stop for this duration in milliseconds.
|
|
166
211
|
*/
|
|
167
212
|
domIdleTime?: number;
|
|
213
|
+
find?: ElementCriteria;
|
|
214
|
+
}
|
|
215
|
+
export interface AppReadiness {
|
|
168
216
|
/**
|
|
169
|
-
*
|
|
217
|
+
* Fixed delay (ms).
|
|
170
218
|
*/
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
};
|
|
219
|
+
delayMs?: number;
|
|
220
|
+
find?: ElementCriteria1;
|
|
174
221
|
}
|
|
175
222
|
export interface WaitUntilRequiresASurface {
|
|
176
223
|
[k: string]: unknown;
|
|
@@ -184,6 +231,9 @@ export interface AProcessSurfaceTakesProcessReadiness {
|
|
|
184
231
|
export interface ABrowserSurfaceTakesBrowserReadiness {
|
|
185
232
|
[k: string]: unknown;
|
|
186
233
|
}
|
|
234
|
+
export interface AnAppSurfaceTakesAppReadiness {
|
|
235
|
+
[k: string]: unknown;
|
|
236
|
+
}
|
|
187
237
|
export interface ABrowserEngineStringSurfaceTakesBrowserReadiness {
|
|
188
238
|
[k: string]: unknown;
|
|
189
239
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"type_v3.d.ts","sourceRoot":"","sources":["../../../src/types/generated/type_v3.ts"],"names":[],"mappings":"AACA;;;GAGG;AAEH;;GAEG;AACH,MAAM,MAAM,QAAQ,GAAG,cAAc,GAAG,gBAAgB,CAAC;AACzD;;GAEG;AACH,MAAM,MAAM,cAAc,GAAG,MAAM,GAAG,MAAM,EAAE,CAAC;AAC/C,MAAM,MAAM,gBAAgB,GAAG;IAC7B,IAAI,EAAE,eAAe,CAAC;IACtB;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB;;OAEG;IACH,SAAS,CAAC,EAAE,gBAAgB,GAAG,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"type_v3.d.ts","sourceRoot":"","sources":["../../../src/types/generated/type_v3.ts"],"names":[],"mappings":"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"}
|
|
@@ -3,9 +3,21 @@
|
|
|
3
3
|
* Do not edit manually
|
|
4
4
|
*/
|
|
5
5
|
/**
|
|
6
|
-
* Shared readiness conditions, shaped by the kind of surface a step targets. Browser surfaces wait on page conditions; process surfaces wait on stdio output or a fixed delay. Unlike goTo's navigation readiness, no condition applies by default — a step waits only on the conditions it names.
|
|
6
|
+
* Shared readiness conditions, shaped by the kind of surface a step targets. Browser surfaces wait on page conditions; process surfaces wait on stdio output or a fixed delay; app surfaces wait on an element or a fixed delay. Unlike goTo's navigation readiness, no condition applies by default — a step waits only on the conditions it names.
|
|
7
7
|
*/
|
|
8
|
-
export type WaitUntil = BrowserReadiness | ProcessReadiness;
|
|
8
|
+
export type WaitUntil = BrowserReadiness | ProcessReadiness | AppReadiness;
|
|
9
|
+
/**
|
|
10
|
+
* Wait for a specific element to be present. At least one finding field must be specified.
|
|
11
|
+
*/
|
|
12
|
+
export type ElementCriteria = {
|
|
13
|
+
[k: string]: unknown;
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* Wait for a specific element to be present. At least one finding field must be specified.
|
|
17
|
+
*/
|
|
18
|
+
export type ElementCriteria1 = {
|
|
19
|
+
[k: string]: unknown;
|
|
20
|
+
};
|
|
9
21
|
export interface BrowserReadiness {
|
|
10
22
|
/**
|
|
11
23
|
* Wait for network activity to be idle (no new requests) for this duration in milliseconds.
|
|
@@ -15,12 +27,7 @@ export interface BrowserReadiness {
|
|
|
15
27
|
* Wait for DOM mutations to stop for this duration in milliseconds.
|
|
16
28
|
*/
|
|
17
29
|
domIdleTime?: number;
|
|
18
|
-
|
|
19
|
-
* Wait for a specific element to be present in the DOM. At least one finding field must be specified.
|
|
20
|
-
*/
|
|
21
|
-
find?: {
|
|
22
|
-
[k: string]: unknown;
|
|
23
|
-
};
|
|
30
|
+
find?: ElementCriteria;
|
|
24
31
|
}
|
|
25
32
|
export interface ProcessReadiness {
|
|
26
33
|
/**
|
|
@@ -32,4 +39,11 @@ export interface ProcessReadiness {
|
|
|
32
39
|
*/
|
|
33
40
|
delayMs?: number;
|
|
34
41
|
}
|
|
42
|
+
export interface AppReadiness {
|
|
43
|
+
/**
|
|
44
|
+
* Fixed delay (ms).
|
|
45
|
+
*/
|
|
46
|
+
delayMs?: number;
|
|
47
|
+
find?: ElementCriteria1;
|
|
48
|
+
}
|
|
35
49
|
//# sourceMappingURL=waitUntil_v3.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"waitUntil_v3.d.ts","sourceRoot":"","sources":["../../../src/types/generated/waitUntil_v3.ts"],"names":[],"mappings":"AACA;;;GAGG;AAEH;;GAEG;AACH,MAAM,MAAM,SAAS,GAAG,gBAAgB,GAAG,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"waitUntil_v3.d.ts","sourceRoot":"","sources":["../../../src/types/generated/waitUntil_v3.ts"],"names":[],"mappings":"AACA;;;GAGG;AAEH;;GAEG;AACH,MAAM,MAAM,SAAS,GAAG,gBAAgB,GAAG,gBAAgB,GAAG,YAAY,CAAC;AAC3E;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG;IAC5B,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;CACtB,CAAC;AACF;;GAEG;AACH,MAAM,MAAM,gBAAgB,GAAG;IAC7B,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;CACtB,CAAC;AAEF,MAAM,WAAW,gBAAgB;IAC/B;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,eAAe,CAAC;CACxB;AACD,MAAM,WAAW,gBAAgB;IAC/B;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AACD,MAAM,WAAW,YAAY;IAC3B;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,IAAI,CAAC,EAAE,gBAAgB,CAAC;CACzB"}
|