ax-grep 0.0.0 → 0.1.1
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/LICENSE +21 -0
- package/README.md +106 -1
- package/dist/browser.d.ts +11 -0
- package/dist/browser.js +12 -0
- package/dist/browser.js.map +1 -0
- package/dist/chunk-HPZ32BKV.js +612 -0
- package/dist/chunk-HPZ32BKV.js.map +1 -0
- package/dist/chunk-ZXTURCRT.js +925 -0
- package/dist/chunk-ZXTURCRT.js.map +1 -0
- package/dist/cli.d.ts +10 -0
- package/dist/cli.js +22364 -0
- package/dist/cli.js.map +1 -0
- package/dist/index.d.ts +18 -0
- package/dist/index.js +436 -0
- package/dist/index.js.map +1 -0
- package/dist/static.d.ts +6 -0
- package/dist/static.js +8 -0
- package/dist/static.js.map +1 -0
- package/dist/types-gwHWhYmw.d.ts +3660 -0
- package/docs/README.md +19 -0
- package/docs/agent-handoff.md +95 -0
- package/docs/agent-readiness.md +38 -0
- package/docs/assets/ax-grep-benchmark.png +0 -0
- package/docs/assets/ax-grep-og.png +0 -0
- package/docs/assets/ax-grep-search.png +0 -0
- package/docs/benchmarks.md +123 -0
- package/docs/cli-agent.md +194 -0
- package/docs/comparison-baseline.md +625 -0
- package/docs/features.md +28 -0
- package/docs/library-api.md +211 -0
- package/docs/progress.md +1306 -0
- package/package.json +92 -6
- package/skills/ax-grep-cli/SKILL.md +89 -0
- package/skills.sh +24 -0
- package/index.js +0 -1
|
@@ -0,0 +1,3660 @@
|
|
|
1
|
+
type OutputFormat = "json" | "text";
|
|
2
|
+
type ExtractMode = "full" | "compact" | "interactive";
|
|
3
|
+
type SemanticTreeOptions = {
|
|
4
|
+
mode?: ExtractMode;
|
|
5
|
+
includeBounds?: boolean;
|
|
6
|
+
includeAttributes?: boolean;
|
|
7
|
+
includeTextNodes?: boolean;
|
|
8
|
+
includeHidden?: boolean;
|
|
9
|
+
includeSelectOptions?: boolean;
|
|
10
|
+
excludeLikelyAds?: boolean;
|
|
11
|
+
excludeLikelyBoilerplate?: boolean;
|
|
12
|
+
pruneCustomElementWrappers?: boolean;
|
|
13
|
+
pruneCollapsedSubtrees?: boolean;
|
|
14
|
+
pruneLikelyClosedOverlays?: boolean;
|
|
15
|
+
summarizeLargeSubtrees?: boolean;
|
|
16
|
+
summarizeLikelyLinkFarms?: boolean;
|
|
17
|
+
summarizeRepeatedSubtrees?: boolean;
|
|
18
|
+
maxChildrenPerNode?: number;
|
|
19
|
+
maxLinkFarmChildren?: number;
|
|
20
|
+
maxRepeatedSubtreeInstances?: number;
|
|
21
|
+
maxTextLength?: number;
|
|
22
|
+
};
|
|
23
|
+
type SemanticTreeChange = {
|
|
24
|
+
tree: SemanticNode;
|
|
25
|
+
changedAt: number;
|
|
26
|
+
mutationCount: number;
|
|
27
|
+
};
|
|
28
|
+
type SemanticTreeObserverOptions = SemanticTreeOptions & {
|
|
29
|
+
debounceMs?: number;
|
|
30
|
+
};
|
|
31
|
+
type SemanticNodeState = {
|
|
32
|
+
hidden?: boolean;
|
|
33
|
+
disabled?: boolean;
|
|
34
|
+
busy?: boolean;
|
|
35
|
+
multiselectable?: boolean;
|
|
36
|
+
sort?: string;
|
|
37
|
+
grabbed?: boolean;
|
|
38
|
+
dropEffect?: string;
|
|
39
|
+
checked?: boolean | "mixed";
|
|
40
|
+
selected?: boolean;
|
|
41
|
+
expanded?: boolean;
|
|
42
|
+
pressed?: boolean | "mixed";
|
|
43
|
+
focused?: boolean;
|
|
44
|
+
required?: boolean;
|
|
45
|
+
invalid?: boolean | string;
|
|
46
|
+
readonly?: boolean;
|
|
47
|
+
current?: boolean | string;
|
|
48
|
+
haspopup?: boolean | string;
|
|
49
|
+
controls?: string;
|
|
50
|
+
live?: string;
|
|
51
|
+
modal?: boolean;
|
|
52
|
+
orientation?: string;
|
|
53
|
+
valueMin?: number;
|
|
54
|
+
valueMax?: number;
|
|
55
|
+
valueNow?: number;
|
|
56
|
+
valueText?: string;
|
|
57
|
+
};
|
|
58
|
+
type SemanticNodeBounds = {
|
|
59
|
+
x: number;
|
|
60
|
+
y: number;
|
|
61
|
+
width: number;
|
|
62
|
+
height: number;
|
|
63
|
+
};
|
|
64
|
+
type SemanticNode = {
|
|
65
|
+
id: string;
|
|
66
|
+
tag: string;
|
|
67
|
+
role: string | null;
|
|
68
|
+
name: string;
|
|
69
|
+
description?: string;
|
|
70
|
+
text?: string;
|
|
71
|
+
value?: string;
|
|
72
|
+
state?: SemanticNodeState;
|
|
73
|
+
interactive: boolean;
|
|
74
|
+
focusable: boolean;
|
|
75
|
+
selector?: string;
|
|
76
|
+
xpath?: string;
|
|
77
|
+
bounds?: SemanticNodeBounds;
|
|
78
|
+
attributes?: Record<string, string>;
|
|
79
|
+
children: SemanticNode[];
|
|
80
|
+
unavailableReason?: string;
|
|
81
|
+
};
|
|
82
|
+
type ExtractorScriptOptions = SemanticTreeOptions & {
|
|
83
|
+
format?: OutputFormat;
|
|
84
|
+
};
|
|
85
|
+
type ObserverScriptOptions = SemanticTreeObserverOptions & {
|
|
86
|
+
globalName?: string;
|
|
87
|
+
};
|
|
88
|
+
type AgentStatus = "ready" | "choose-result" | "verify" | "needs-browser" | "error";
|
|
89
|
+
type AgentBrowserHtmlReasonCode = "no-inspectable-content" | "client-rendered" | "http-error" | "fetch-error" | "challenge" | "hcaptcha" | "recaptcha" | "cloudflare-challenge" | "login-required" | "paywall" | "blocked-or-empty" | "retry-action" | "interaction-required" | "browser-interaction" | "unknown";
|
|
90
|
+
type AgentStaticReadiness = "usable-content" | "usable-structured-data" | "usable-hidden-data" | "thin" | "needs-browser" | "error";
|
|
91
|
+
type AgentStaticReadinessReasonCode = "browser-required" | "client-rendered" | "interaction-required" | "extraction-error" | "hidden-data" | "source-link" | "form" | "action-target" | "structured-data" | "readable-content" | "limited-static-payload" | "thin-content";
|
|
92
|
+
type AgentSourceSearchFailureKind = "not-found" | "http-client-error" | "http-server-error" | "http-error" | "fetch-error" | "timeout" | "rate-limited" | "no-inspectable-content" | "unknown";
|
|
93
|
+
type AgentRoutingIntent = "read-current" | "open-url" | "search" | "browser-html" | "browser-interaction" | "inspect-output" | "none";
|
|
94
|
+
type AgentContinuationMode = "command" | "read" | "browser" | "capture-html" | "inspect" | "stop";
|
|
95
|
+
type AgentExecutionMode = "run-command" | "read-current" | "interact-browser" | "inspect-output";
|
|
96
|
+
type AgentAction = {
|
|
97
|
+
action?: string;
|
|
98
|
+
execution?: AgentExecutionMode;
|
|
99
|
+
priority?: "low" | "medium" | "high";
|
|
100
|
+
priorityReason?: string;
|
|
101
|
+
reason?: string;
|
|
102
|
+
url?: string;
|
|
103
|
+
rank?: number;
|
|
104
|
+
openResult?: number | "best";
|
|
105
|
+
command?: string;
|
|
106
|
+
commandArgs?: string[];
|
|
107
|
+
afterInteractionCommand?: string;
|
|
108
|
+
afterInteractionCommandArgs?: string[];
|
|
109
|
+
terminal?: boolean;
|
|
110
|
+
readFrom?: string;
|
|
111
|
+
sourceLinkRef?: string;
|
|
112
|
+
requiresBrowserInteraction?: boolean;
|
|
113
|
+
expectedOutcome?: AgentExpectedOutcome["kind"];
|
|
114
|
+
expectedOutcomeMessage?: string;
|
|
115
|
+
target?: AgentTarget;
|
|
116
|
+
source?: string;
|
|
117
|
+
primary?: boolean;
|
|
118
|
+
index?: number;
|
|
119
|
+
path?: string;
|
|
120
|
+
};
|
|
121
|
+
type AgentPageMetadata = {
|
|
122
|
+
description?: string;
|
|
123
|
+
lang?: string;
|
|
124
|
+
dir?: string;
|
|
125
|
+
siteName?: string;
|
|
126
|
+
author?: string;
|
|
127
|
+
publishedTime?: string;
|
|
128
|
+
modifiedTime?: string;
|
|
129
|
+
structuredDataTypes?: string[];
|
|
130
|
+
};
|
|
131
|
+
type AgentFindMatch = {
|
|
132
|
+
field: string;
|
|
133
|
+
text: string;
|
|
134
|
+
rank?: number;
|
|
135
|
+
url?: string;
|
|
136
|
+
selector?: string;
|
|
137
|
+
source?: "semantic" | "fallback";
|
|
138
|
+
score?: number;
|
|
139
|
+
quality?: "low" | "medium" | "high";
|
|
140
|
+
qualityReason?: string;
|
|
141
|
+
};
|
|
142
|
+
type AgentFindSummary = {
|
|
143
|
+
query: string;
|
|
144
|
+
found: boolean;
|
|
145
|
+
matchCount: number;
|
|
146
|
+
matches: AgentFindMatch[];
|
|
147
|
+
};
|
|
148
|
+
type AgentPageEvidence = {
|
|
149
|
+
id: string;
|
|
150
|
+
path: string;
|
|
151
|
+
rank: number;
|
|
152
|
+
text: string;
|
|
153
|
+
role: string;
|
|
154
|
+
source: "semantic" | "fallback";
|
|
155
|
+
score: number;
|
|
156
|
+
quality: "low" | "medium" | "high";
|
|
157
|
+
qualityReason: string;
|
|
158
|
+
selector?: string;
|
|
159
|
+
};
|
|
160
|
+
type AgentPageAction = {
|
|
161
|
+
type: string;
|
|
162
|
+
text: string;
|
|
163
|
+
selector?: string;
|
|
164
|
+
};
|
|
165
|
+
type AgentPageDataTable = {
|
|
166
|
+
id: string;
|
|
167
|
+
path: string;
|
|
168
|
+
rank: number;
|
|
169
|
+
rowCount: number;
|
|
170
|
+
columnCount: number;
|
|
171
|
+
headers: string[];
|
|
172
|
+
sampleRows: string[][];
|
|
173
|
+
text?: string;
|
|
174
|
+
caption?: string;
|
|
175
|
+
selector?: string;
|
|
176
|
+
};
|
|
177
|
+
type AgentPageBarrier = {
|
|
178
|
+
id: string;
|
|
179
|
+
path: string;
|
|
180
|
+
rank: number;
|
|
181
|
+
kind: "challenge" | "login" | "paywall" | "cookie-consent" | "age-gate" | "geo-block";
|
|
182
|
+
severity: "info" | "warning" | "error";
|
|
183
|
+
text?: string;
|
|
184
|
+
evidence: string;
|
|
185
|
+
diagnosticCode?: string;
|
|
186
|
+
source: "diagnostic" | "content" | "action";
|
|
187
|
+
selector?: string;
|
|
188
|
+
};
|
|
189
|
+
type AgentPageCodeBlock = {
|
|
190
|
+
id: string;
|
|
191
|
+
path: string;
|
|
192
|
+
rank: number;
|
|
193
|
+
text?: string;
|
|
194
|
+
lineCount: number;
|
|
195
|
+
source: "pre" | "code";
|
|
196
|
+
language?: string;
|
|
197
|
+
commandLike?: boolean;
|
|
198
|
+
selector?: string;
|
|
199
|
+
};
|
|
200
|
+
type AgentPageMedia = {
|
|
201
|
+
id: string;
|
|
202
|
+
path: string;
|
|
203
|
+
rank: number;
|
|
204
|
+
kind: "open-graph" | "figure" | "image";
|
|
205
|
+
url: string;
|
|
206
|
+
urlPath?: string;
|
|
207
|
+
urlQuery?: string;
|
|
208
|
+
text?: string;
|
|
209
|
+
alt?: string;
|
|
210
|
+
caption?: string;
|
|
211
|
+
title?: string;
|
|
212
|
+
width?: number;
|
|
213
|
+
height?: number;
|
|
214
|
+
selector?: string;
|
|
215
|
+
};
|
|
216
|
+
type AgentPageResource = {
|
|
217
|
+
id: string;
|
|
218
|
+
path: string;
|
|
219
|
+
rank: number;
|
|
220
|
+
kind: "feed" | "alternate" | "amp" | "license" | "manifest" | "sitemap" | "search" | "document" | "download";
|
|
221
|
+
url: string;
|
|
222
|
+
urlPath?: string;
|
|
223
|
+
urlQuery?: string;
|
|
224
|
+
text?: string;
|
|
225
|
+
title?: string;
|
|
226
|
+
rel?: string;
|
|
227
|
+
type?: string;
|
|
228
|
+
hreflang?: string;
|
|
229
|
+
selector?: string;
|
|
230
|
+
};
|
|
231
|
+
type AgentPageCitation = {
|
|
232
|
+
id: string;
|
|
233
|
+
path: string;
|
|
234
|
+
rank: number;
|
|
235
|
+
source: "blockquote" | "cite" | "footnote" | "reference";
|
|
236
|
+
text?: string;
|
|
237
|
+
quote?: string;
|
|
238
|
+
title?: string;
|
|
239
|
+
url?: string;
|
|
240
|
+
urlPath?: string;
|
|
241
|
+
urlQuery?: string;
|
|
242
|
+
selector?: string;
|
|
243
|
+
};
|
|
244
|
+
type AgentPageBreadcrumbItem = {
|
|
245
|
+
label: string;
|
|
246
|
+
url?: string;
|
|
247
|
+
urlPath?: string;
|
|
248
|
+
urlQuery?: string;
|
|
249
|
+
position?: number;
|
|
250
|
+
};
|
|
251
|
+
type AgentPageBreadcrumb = {
|
|
252
|
+
id: string;
|
|
253
|
+
path: string;
|
|
254
|
+
rank: number;
|
|
255
|
+
source: "json-ld" | "html";
|
|
256
|
+
items: AgentPageBreadcrumbItem[];
|
|
257
|
+
text?: string;
|
|
258
|
+
selector?: string;
|
|
259
|
+
};
|
|
260
|
+
type AgentPageSection = {
|
|
261
|
+
id: string;
|
|
262
|
+
path: string;
|
|
263
|
+
rank: number;
|
|
264
|
+
heading: string;
|
|
265
|
+
level: number;
|
|
266
|
+
text?: string;
|
|
267
|
+
excerpts: string[];
|
|
268
|
+
selector?: string;
|
|
269
|
+
};
|
|
270
|
+
type AgentPagePagination = {
|
|
271
|
+
id: string;
|
|
272
|
+
path: string;
|
|
273
|
+
rank: number;
|
|
274
|
+
kind: "next" | "prev" | "first" | "last" | "page";
|
|
275
|
+
label: string;
|
|
276
|
+
text?: string;
|
|
277
|
+
source: "link" | "html";
|
|
278
|
+
url?: string;
|
|
279
|
+
urlPath?: string;
|
|
280
|
+
urlQuery?: string;
|
|
281
|
+
current?: boolean;
|
|
282
|
+
selector?: string;
|
|
283
|
+
};
|
|
284
|
+
type AgentPageTocItem = {
|
|
285
|
+
label: string;
|
|
286
|
+
url?: string;
|
|
287
|
+
urlPath?: string;
|
|
288
|
+
urlQuery?: string;
|
|
289
|
+
level?: number;
|
|
290
|
+
};
|
|
291
|
+
type AgentPageToc = {
|
|
292
|
+
id: string;
|
|
293
|
+
path: string;
|
|
294
|
+
rank: number;
|
|
295
|
+
items: AgentPageTocItem[];
|
|
296
|
+
text?: string;
|
|
297
|
+
title?: string;
|
|
298
|
+
selector?: string;
|
|
299
|
+
};
|
|
300
|
+
type AgentPageAuthorLink = {
|
|
301
|
+
id: string;
|
|
302
|
+
path: string;
|
|
303
|
+
rank: number;
|
|
304
|
+
url: string;
|
|
305
|
+
urlPath?: string;
|
|
306
|
+
urlQuery?: string;
|
|
307
|
+
text?: string;
|
|
308
|
+
source: "json-ld" | "link" | "html";
|
|
309
|
+
name?: string;
|
|
310
|
+
rel?: string;
|
|
311
|
+
selector?: string;
|
|
312
|
+
};
|
|
313
|
+
type AgentPageOffer = {
|
|
314
|
+
id: string;
|
|
315
|
+
path: string;
|
|
316
|
+
rank: number;
|
|
317
|
+
name?: string;
|
|
318
|
+
price?: string;
|
|
319
|
+
priceAmount?: number;
|
|
320
|
+
currency?: string;
|
|
321
|
+
availability?: string;
|
|
322
|
+
url?: string;
|
|
323
|
+
urlPath?: string;
|
|
324
|
+
urlQuery?: string;
|
|
325
|
+
brand?: string;
|
|
326
|
+
sku?: string;
|
|
327
|
+
rating?: string;
|
|
328
|
+
reviewCount?: string;
|
|
329
|
+
text?: string;
|
|
330
|
+
source: "json-ld";
|
|
331
|
+
selector?: string;
|
|
332
|
+
};
|
|
333
|
+
type AgentPageIdentity = {
|
|
334
|
+
id: string;
|
|
335
|
+
path: string;
|
|
336
|
+
rank: number;
|
|
337
|
+
kind: "organization" | "person" | "website" | "brand" | "thing";
|
|
338
|
+
name: string;
|
|
339
|
+
text?: string;
|
|
340
|
+
source: "json-ld" | "meta";
|
|
341
|
+
url?: string;
|
|
342
|
+
urlPath?: string;
|
|
343
|
+
urlQuery?: string;
|
|
344
|
+
logoUrl?: string;
|
|
345
|
+
logoUrlPath?: string;
|
|
346
|
+
logoUrlQuery?: string;
|
|
347
|
+
sameAs?: string[];
|
|
348
|
+
sameAsUrlPaths?: string[];
|
|
349
|
+
sameAsUrlQueries?: string[];
|
|
350
|
+
selector?: string;
|
|
351
|
+
};
|
|
352
|
+
type AgentPageDataset = {
|
|
353
|
+
id: string;
|
|
354
|
+
path: string;
|
|
355
|
+
rank: number;
|
|
356
|
+
kind: "dataset" | "dataCatalog" | "dataDownload";
|
|
357
|
+
name: string;
|
|
358
|
+
text?: string;
|
|
359
|
+
source: "json-ld" | "link";
|
|
360
|
+
url?: string;
|
|
361
|
+
urlPath?: string;
|
|
362
|
+
urlQuery?: string;
|
|
363
|
+
distributionUrls?: string[];
|
|
364
|
+
distributionUrlPaths?: string[];
|
|
365
|
+
distributionUrlQueries?: string[];
|
|
366
|
+
encodingFormat?: string;
|
|
367
|
+
licenseUrl?: string;
|
|
368
|
+
licenseUrlPath?: string;
|
|
369
|
+
licenseUrlQuery?: string;
|
|
370
|
+
temporalCoverage?: string;
|
|
371
|
+
spatialCoverage?: string;
|
|
372
|
+
creator?: string;
|
|
373
|
+
selector?: string;
|
|
374
|
+
};
|
|
375
|
+
type AgentPageTimeline = {
|
|
376
|
+
id: string;
|
|
377
|
+
path: string;
|
|
378
|
+
rank: number;
|
|
379
|
+
kind: "published" | "modified" | "created" | "updated" | "start" | "end" | "date";
|
|
380
|
+
label: string;
|
|
381
|
+
value: string;
|
|
382
|
+
isoDate?: string;
|
|
383
|
+
unixMs?: number;
|
|
384
|
+
text?: string;
|
|
385
|
+
source: "meta" | "json-ld" | "time" | "page";
|
|
386
|
+
selector?: string;
|
|
387
|
+
};
|
|
388
|
+
type AgentPageContactPoint = {
|
|
389
|
+
id: string;
|
|
390
|
+
path: string;
|
|
391
|
+
rank: number;
|
|
392
|
+
kind: "email" | "phone" | "address" | "contact-url";
|
|
393
|
+
label: string;
|
|
394
|
+
value: string;
|
|
395
|
+
text?: string;
|
|
396
|
+
source: "json-ld" | "html" | "link";
|
|
397
|
+
url?: string;
|
|
398
|
+
urlPath?: string;
|
|
399
|
+
urlQuery?: string;
|
|
400
|
+
selector?: string;
|
|
401
|
+
};
|
|
402
|
+
type AgentPageFaq = {
|
|
403
|
+
id: string;
|
|
404
|
+
path: string;
|
|
405
|
+
rank: number;
|
|
406
|
+
question: string;
|
|
407
|
+
answer: string;
|
|
408
|
+
text?: string;
|
|
409
|
+
source: "details" | "html";
|
|
410
|
+
selector?: string;
|
|
411
|
+
};
|
|
412
|
+
type AgentPageHydration = {
|
|
413
|
+
id: string;
|
|
414
|
+
path: string;
|
|
415
|
+
rank: number;
|
|
416
|
+
kind: "next-data" | "nuxt-data" | "gatsby-data" | "fetch-preload" | "json-script";
|
|
417
|
+
label: string;
|
|
418
|
+
text?: string;
|
|
419
|
+
source: "script" | "link";
|
|
420
|
+
framework?: string;
|
|
421
|
+
route?: string;
|
|
422
|
+
buildId?: string;
|
|
423
|
+
url?: string;
|
|
424
|
+
urlPath?: string;
|
|
425
|
+
urlQuery?: string;
|
|
426
|
+
selector?: string;
|
|
427
|
+
};
|
|
428
|
+
type AgentPageApiEndpoint = {
|
|
429
|
+
id: string;
|
|
430
|
+
path: string;
|
|
431
|
+
rank: number;
|
|
432
|
+
kind: "fetch" | "axios" | "xhr" | "graphql" | "event-stream";
|
|
433
|
+
method?: string;
|
|
434
|
+
url: string;
|
|
435
|
+
urlPath?: string;
|
|
436
|
+
urlQuery?: string;
|
|
437
|
+
text?: string;
|
|
438
|
+
source: "script";
|
|
439
|
+
selector?: string;
|
|
440
|
+
};
|
|
441
|
+
type AgentPageClientState = {
|
|
442
|
+
id: string;
|
|
443
|
+
path: string;
|
|
444
|
+
rank: number;
|
|
445
|
+
kind: "local-storage" | "session-storage" | "cookie";
|
|
446
|
+
operation: "read" | "write" | "delete";
|
|
447
|
+
key: string;
|
|
448
|
+
text?: string;
|
|
449
|
+
source: "script";
|
|
450
|
+
selector?: string;
|
|
451
|
+
};
|
|
452
|
+
type AgentPageRuntime = {
|
|
453
|
+
id: string;
|
|
454
|
+
path: string;
|
|
455
|
+
rank: number;
|
|
456
|
+
kind: "service-worker" | "web-worker" | "shared-worker" | "worklet" | "dynamic-import" | "module-preload";
|
|
457
|
+
url: string;
|
|
458
|
+
urlPath?: string;
|
|
459
|
+
urlQuery?: string;
|
|
460
|
+
text?: string;
|
|
461
|
+
source: "script" | "link";
|
|
462
|
+
selector?: string;
|
|
463
|
+
};
|
|
464
|
+
type AgentPageConfig = {
|
|
465
|
+
id: string;
|
|
466
|
+
path: string;
|
|
467
|
+
rank: number;
|
|
468
|
+
kind: "app-config" | "initial-state" | "env" | "feature-flags" | "data-layer" | "config";
|
|
469
|
+
name: string;
|
|
470
|
+
keys: string[];
|
|
471
|
+
keyCount: number;
|
|
472
|
+
text?: string;
|
|
473
|
+
source: "script";
|
|
474
|
+
selector?: string;
|
|
475
|
+
};
|
|
476
|
+
type AgentPageTopic = {
|
|
477
|
+
id: string;
|
|
478
|
+
path: string;
|
|
479
|
+
rank: number;
|
|
480
|
+
kind: "keyword" | "tag" | "section" | "category" | "about" | "mention";
|
|
481
|
+
label: string;
|
|
482
|
+
value: string;
|
|
483
|
+
text?: string;
|
|
484
|
+
source: "meta" | "json-ld";
|
|
485
|
+
selector?: string;
|
|
486
|
+
};
|
|
487
|
+
type AgentPageKeyValue = {
|
|
488
|
+
id: string;
|
|
489
|
+
path: string;
|
|
490
|
+
rank: number;
|
|
491
|
+
label: string;
|
|
492
|
+
value: string;
|
|
493
|
+
text?: string;
|
|
494
|
+
source: "definition-list" | "time" | "text";
|
|
495
|
+
datetime?: string;
|
|
496
|
+
selector?: string;
|
|
497
|
+
};
|
|
498
|
+
type AgentPageMetaFact = {
|
|
499
|
+
id: string;
|
|
500
|
+
path: string;
|
|
501
|
+
rank: number;
|
|
502
|
+
label: string;
|
|
503
|
+
value: string;
|
|
504
|
+
text?: string;
|
|
505
|
+
source: "meta" | "link";
|
|
506
|
+
url?: string;
|
|
507
|
+
urlPath?: string;
|
|
508
|
+
urlQuery?: string;
|
|
509
|
+
selector?: string;
|
|
510
|
+
};
|
|
511
|
+
type AgentPageProvenance = {
|
|
512
|
+
id: string;
|
|
513
|
+
path: string;
|
|
514
|
+
rank: number;
|
|
515
|
+
kind: "doi" | "pmid" | "arxiv" | "isbn" | "publisher" | "journal" | "license" | "identifier";
|
|
516
|
+
label: string;
|
|
517
|
+
value: string;
|
|
518
|
+
text?: string;
|
|
519
|
+
source: "meta" | "link" | "json-ld";
|
|
520
|
+
url?: string;
|
|
521
|
+
urlPath?: string;
|
|
522
|
+
urlQuery?: string;
|
|
523
|
+
selector?: string;
|
|
524
|
+
};
|
|
525
|
+
type AgentPageHttpPolicy = {
|
|
526
|
+
id: string;
|
|
527
|
+
path: string;
|
|
528
|
+
rank: number;
|
|
529
|
+
name: string;
|
|
530
|
+
value: string;
|
|
531
|
+
text?: string;
|
|
532
|
+
source: "header" | "meta";
|
|
533
|
+
selector?: string;
|
|
534
|
+
};
|
|
535
|
+
type AgentPageSchemaFactValue = {
|
|
536
|
+
label: string;
|
|
537
|
+
value: string;
|
|
538
|
+
};
|
|
539
|
+
type AgentPageSchemaFact = {
|
|
540
|
+
id: string;
|
|
541
|
+
path: string;
|
|
542
|
+
rank: number;
|
|
543
|
+
types: string[];
|
|
544
|
+
facts: AgentPageSchemaFactValue[];
|
|
545
|
+
text?: string;
|
|
546
|
+
source: "json-ld";
|
|
547
|
+
selector?: string;
|
|
548
|
+
};
|
|
549
|
+
type AgentPageAppHint = {
|
|
550
|
+
id: string;
|
|
551
|
+
path: string;
|
|
552
|
+
rank: number;
|
|
553
|
+
kind: "manifest" | "app-name" | "icon" | "theme" | "capability";
|
|
554
|
+
label: string;
|
|
555
|
+
value: string;
|
|
556
|
+
text?: string;
|
|
557
|
+
source: "link" | "meta";
|
|
558
|
+
url?: string;
|
|
559
|
+
urlPath?: string;
|
|
560
|
+
urlQuery?: string;
|
|
561
|
+
sizes?: string;
|
|
562
|
+
media?: string;
|
|
563
|
+
selector?: string;
|
|
564
|
+
};
|
|
565
|
+
type AgentPageMobileHint = {
|
|
566
|
+
id: string;
|
|
567
|
+
path: string;
|
|
568
|
+
rank: number;
|
|
569
|
+
kind: "viewport" | "format-detection" | "color-scheme" | "smart-app-banner" | "app-link";
|
|
570
|
+
label: string;
|
|
571
|
+
value: string;
|
|
572
|
+
text?: string;
|
|
573
|
+
source: "meta" | "link";
|
|
574
|
+
platform?: string;
|
|
575
|
+
url?: string;
|
|
576
|
+
urlPath?: string;
|
|
577
|
+
urlQuery?: string;
|
|
578
|
+
selector?: string;
|
|
579
|
+
};
|
|
580
|
+
type AgentPageEmbed = {
|
|
581
|
+
id: string;
|
|
582
|
+
path: string;
|
|
583
|
+
rank: number;
|
|
584
|
+
kind: "iframe" | "video" | "audio" | "embed" | "object";
|
|
585
|
+
url: string;
|
|
586
|
+
urlPath?: string;
|
|
587
|
+
urlQuery?: string;
|
|
588
|
+
text?: string;
|
|
589
|
+
title?: string;
|
|
590
|
+
type?: string;
|
|
591
|
+
posterUrl?: string;
|
|
592
|
+
posterUrlPath?: string;
|
|
593
|
+
posterUrlQuery?: string;
|
|
594
|
+
sourceUrls?: string[];
|
|
595
|
+
sourceUrlPaths?: string[];
|
|
596
|
+
sourceUrlQueries?: string[];
|
|
597
|
+
sandbox?: string;
|
|
598
|
+
allow?: string;
|
|
599
|
+
loading?: string;
|
|
600
|
+
selector?: string;
|
|
601
|
+
};
|
|
602
|
+
type AgentPageTranscript = {
|
|
603
|
+
id: string;
|
|
604
|
+
path: string;
|
|
605
|
+
rank: number;
|
|
606
|
+
kind: "captions" | "subtitles" | "descriptions" | "chapters" | "metadata" | "transcript";
|
|
607
|
+
url: string;
|
|
608
|
+
urlPath?: string;
|
|
609
|
+
urlQuery?: string;
|
|
610
|
+
text?: string;
|
|
611
|
+
mediaKind?: "video" | "audio";
|
|
612
|
+
label?: string;
|
|
613
|
+
language?: string;
|
|
614
|
+
selector?: string;
|
|
615
|
+
};
|
|
616
|
+
type AgentPageCheck = AgentPageMetadata & {
|
|
617
|
+
contentEvidence: AgentPageEvidence[];
|
|
618
|
+
contentLength: number;
|
|
619
|
+
confidence: "low" | "medium" | "high";
|
|
620
|
+
readability: {
|
|
621
|
+
level: "low" | "medium" | "high";
|
|
622
|
+
score: number;
|
|
623
|
+
reasons: string[];
|
|
624
|
+
};
|
|
625
|
+
primaryLinks?: AgentSourceChoice[];
|
|
626
|
+
sourceLinks?: AgentSourceChoice[];
|
|
627
|
+
actions?: AgentPageAction[];
|
|
628
|
+
recommendedAction?: AgentAction;
|
|
629
|
+
nextSteps?: AgentAction[];
|
|
630
|
+
title?: string;
|
|
631
|
+
canonicalUrl?: string;
|
|
632
|
+
mainHeading?: string;
|
|
633
|
+
dataTables?: AgentPageDataTable[];
|
|
634
|
+
barriers?: AgentPageBarrier[];
|
|
635
|
+
forms?: AgentPageForm[];
|
|
636
|
+
actionTargets?: AgentActionTargetChoice[];
|
|
637
|
+
hydration?: AgentPageHydration[];
|
|
638
|
+
apiEndpoints?: AgentPageApiEndpoint[];
|
|
639
|
+
clientState?: AgentPageClientState[];
|
|
640
|
+
runtime?: AgentPageRuntime[];
|
|
641
|
+
config?: AgentPageConfig[];
|
|
642
|
+
appHints?: AgentPageAppHint[];
|
|
643
|
+
mobileHints?: AgentPageMobileHint[];
|
|
644
|
+
topics?: AgentPageTopic[];
|
|
645
|
+
contactPoints?: AgentPageContactPoint[];
|
|
646
|
+
keyValues?: AgentPageKeyValue[];
|
|
647
|
+
metaFacts?: AgentPageMetaFact[];
|
|
648
|
+
provenance?: AgentPageProvenance[];
|
|
649
|
+
httpPolicies?: AgentPageHttpPolicy[];
|
|
650
|
+
schemaFacts?: AgentPageSchemaFact[];
|
|
651
|
+
offers?: AgentPageOffer[];
|
|
652
|
+
identities?: AgentPageIdentity[];
|
|
653
|
+
datasets?: AgentPageDataset[];
|
|
654
|
+
timeline?: AgentPageTimeline[];
|
|
655
|
+
faqs?: AgentPageFaq[];
|
|
656
|
+
breadcrumbs?: AgentPageBreadcrumb[];
|
|
657
|
+
sections?: AgentPageSection[];
|
|
658
|
+
pagination?: AgentPagePagination[];
|
|
659
|
+
toc?: AgentPageToc[];
|
|
660
|
+
codeBlocks?: AgentPageCodeBlock[];
|
|
661
|
+
citations?: AgentPageCitation[];
|
|
662
|
+
media?: AgentPageMedia[];
|
|
663
|
+
resources?: AgentPageResource[];
|
|
664
|
+
embeds?: AgentPageEmbed[];
|
|
665
|
+
transcripts?: AgentPageTranscript[];
|
|
666
|
+
authorLinks?: AgentPageAuthorLink[];
|
|
667
|
+
};
|
|
668
|
+
type AgentVerification = {
|
|
669
|
+
status: "matched" | "partial" | "missing";
|
|
670
|
+
requestedCount: number;
|
|
671
|
+
foundCount: number;
|
|
672
|
+
missingCount: number;
|
|
673
|
+
evidenceCount: number;
|
|
674
|
+
foundQueries?: string[];
|
|
675
|
+
missingQueries?: string[];
|
|
676
|
+
bestEvidence?: AgentFindMatch;
|
|
677
|
+
recommendedAction?: AgentAction;
|
|
678
|
+
};
|
|
679
|
+
type AgentSearchDecision = {
|
|
680
|
+
decision: "open-result" | "refine-search" | "none";
|
|
681
|
+
confidence: "low" | "medium" | "high";
|
|
682
|
+
reason: string;
|
|
683
|
+
resultCount: number;
|
|
684
|
+
highRelevanceCount: number;
|
|
685
|
+
mediumRelevanceCount: number;
|
|
686
|
+
lowRelevanceCount: number;
|
|
687
|
+
officialCount: number;
|
|
688
|
+
findMatchCount: number;
|
|
689
|
+
recommendedRank?: number;
|
|
690
|
+
recommendedPath?: string;
|
|
691
|
+
recommendedTitle?: string;
|
|
692
|
+
recommendedUrl?: string;
|
|
693
|
+
recommendedUrlPath?: string;
|
|
694
|
+
recommendedUrlQuery?: string;
|
|
695
|
+
recommendedSource?: string;
|
|
696
|
+
recommendedSourceScore?: number;
|
|
697
|
+
recommendedSourceType?: AgentTarget["sourceType"];
|
|
698
|
+
recommendedSourceHints?: string[];
|
|
699
|
+
recommendedDateText?: string;
|
|
700
|
+
recommendedDateIso?: string;
|
|
701
|
+
recommendedDateUnixMs?: number;
|
|
702
|
+
recommendedDatePrecision?: "day" | "month" | "year";
|
|
703
|
+
recommendedDateSource?: "title" | "snippet";
|
|
704
|
+
recommendedRelevance?: "low" | "medium" | "high";
|
|
705
|
+
recommendedLikelyOfficial?: boolean;
|
|
706
|
+
firstOfficialRank?: number;
|
|
707
|
+
firstOfficialPath?: string;
|
|
708
|
+
firstOfficialTitle?: string;
|
|
709
|
+
firstOfficialUrl?: string;
|
|
710
|
+
firstOfficialSource?: string;
|
|
711
|
+
firstOfficialSourceScore?: number;
|
|
712
|
+
firstOfficialSourceType?: AgentTarget["sourceType"];
|
|
713
|
+
firstOfficialSourceHints?: string[];
|
|
714
|
+
firstOfficialDateText?: string;
|
|
715
|
+
firstOfficialDateIso?: string;
|
|
716
|
+
firstOfficialDateUnixMs?: number;
|
|
717
|
+
firstOfficialDatePrecision?: "day" | "month" | "year";
|
|
718
|
+
firstOfficialDateSource?: "title" | "snippet";
|
|
719
|
+
firstOfficialRelevance?: "low" | "medium" | "high";
|
|
720
|
+
firstOfficialCommand?: string;
|
|
721
|
+
firstOfficialCommandArgs?: string[];
|
|
722
|
+
command?: string;
|
|
723
|
+
commandArgs?: string[];
|
|
724
|
+
};
|
|
725
|
+
type AgentPageDecision = {
|
|
726
|
+
decision: "read-content" | "open-source-link" | "open-site-search" | "retry-with-browser-html" | "inspect-actions" | "none";
|
|
727
|
+
confidence: "low" | "medium" | "high";
|
|
728
|
+
reason: string;
|
|
729
|
+
readability: "low" | "medium" | "high";
|
|
730
|
+
readabilityScore: number;
|
|
731
|
+
evidenceCount: number;
|
|
732
|
+
evidenceQualityScore: number;
|
|
733
|
+
sourceLinkCount: number;
|
|
734
|
+
sourceQualityScore: number;
|
|
735
|
+
readFrom?: string;
|
|
736
|
+
url?: string;
|
|
737
|
+
command?: string;
|
|
738
|
+
commandArgs?: string[];
|
|
739
|
+
};
|
|
740
|
+
type AgentSemanticSummary = {
|
|
741
|
+
nodeCount: number;
|
|
742
|
+
namedRoleCount: number;
|
|
743
|
+
interactiveCount: number;
|
|
744
|
+
focusableCount: number;
|
|
745
|
+
headingCount: number;
|
|
746
|
+
landmarkCount: number;
|
|
747
|
+
linkCount: number;
|
|
748
|
+
buttonCount: number;
|
|
749
|
+
imageCount: number;
|
|
750
|
+
tableCount: number;
|
|
751
|
+
listCount: number;
|
|
752
|
+
fieldCount: number;
|
|
753
|
+
descriptionCount: number;
|
|
754
|
+
valueCount: number;
|
|
755
|
+
relationCount: number;
|
|
756
|
+
choiceCount: number;
|
|
757
|
+
stateCount: number;
|
|
758
|
+
unavailableCount: number;
|
|
759
|
+
roleCounts: Record<string, number>;
|
|
760
|
+
topRoles: Array<{
|
|
761
|
+
role: string;
|
|
762
|
+
count: number;
|
|
763
|
+
}>;
|
|
764
|
+
landmarks: string[];
|
|
765
|
+
headings: string[];
|
|
766
|
+
namedRoles: string[];
|
|
767
|
+
semanticOutline: Array<{
|
|
768
|
+
path: string;
|
|
769
|
+
kind: "heading" | "landmark";
|
|
770
|
+
role: string;
|
|
771
|
+
text: string;
|
|
772
|
+
level?: number;
|
|
773
|
+
depth: number;
|
|
774
|
+
parentPath?: string;
|
|
775
|
+
parentRole?: string;
|
|
776
|
+
parentName?: string;
|
|
777
|
+
selector?: string;
|
|
778
|
+
}>;
|
|
779
|
+
keyboardItems: Array<{
|
|
780
|
+
path: string;
|
|
781
|
+
role: string;
|
|
782
|
+
name?: string;
|
|
783
|
+
shortcuts?: string[];
|
|
784
|
+
accessKey?: string;
|
|
785
|
+
tabIndex?: number;
|
|
786
|
+
focusable: boolean;
|
|
787
|
+
selector?: string;
|
|
788
|
+
}>;
|
|
789
|
+
headingItems: Array<{
|
|
790
|
+
path: string;
|
|
791
|
+
text: string;
|
|
792
|
+
level?: number;
|
|
793
|
+
selector?: string;
|
|
794
|
+
}>;
|
|
795
|
+
landmarkItems: Array<{
|
|
796
|
+
path: string;
|
|
797
|
+
role: string;
|
|
798
|
+
name?: string;
|
|
799
|
+
selector?: string;
|
|
800
|
+
}>;
|
|
801
|
+
namedRoleItems: Array<{
|
|
802
|
+
path: string;
|
|
803
|
+
role: string;
|
|
804
|
+
name: string;
|
|
805
|
+
roleDescription?: string;
|
|
806
|
+
selector?: string;
|
|
807
|
+
}>;
|
|
808
|
+
interactiveRoles: Array<{
|
|
809
|
+
path: string;
|
|
810
|
+
role: string;
|
|
811
|
+
name: string;
|
|
812
|
+
roleDescription?: string;
|
|
813
|
+
description?: string;
|
|
814
|
+
value?: string;
|
|
815
|
+
selector?: string;
|
|
816
|
+
state?: SemanticNodeState;
|
|
817
|
+
}>;
|
|
818
|
+
focusableItems: Array<{
|
|
819
|
+
path: string;
|
|
820
|
+
role: string;
|
|
821
|
+
name?: string;
|
|
822
|
+
roleDescription?: string;
|
|
823
|
+
selector?: string;
|
|
824
|
+
state?: SemanticNodeState;
|
|
825
|
+
}>;
|
|
826
|
+
links: Array<{
|
|
827
|
+
path: string;
|
|
828
|
+
name: string;
|
|
829
|
+
url?: string;
|
|
830
|
+
target?: string;
|
|
831
|
+
rel?: string[];
|
|
832
|
+
type?: string;
|
|
833
|
+
hreflang?: string;
|
|
834
|
+
state?: string;
|
|
835
|
+
current?: SemanticNodeState["current"];
|
|
836
|
+
download?: string | true;
|
|
837
|
+
selector?: string;
|
|
838
|
+
}>;
|
|
839
|
+
inPageLinks: Array<{
|
|
840
|
+
path: string;
|
|
841
|
+
kind: "skip" | "anchor";
|
|
842
|
+
name: string;
|
|
843
|
+
url: string;
|
|
844
|
+
targetId?: string;
|
|
845
|
+
selector?: string;
|
|
846
|
+
}>;
|
|
847
|
+
buttons: Array<{
|
|
848
|
+
path: string;
|
|
849
|
+
name: string;
|
|
850
|
+
roleDescription?: string;
|
|
851
|
+
description?: string;
|
|
852
|
+
type?: string;
|
|
853
|
+
state?: string;
|
|
854
|
+
disabled?: boolean;
|
|
855
|
+
pressed?: SemanticNodeState["pressed"];
|
|
856
|
+
expanded?: boolean;
|
|
857
|
+
haspopup?: SemanticNodeState["haspopup"];
|
|
858
|
+
controls?: string;
|
|
859
|
+
formAction?: string;
|
|
860
|
+
formMethod?: string;
|
|
861
|
+
formTarget?: string;
|
|
862
|
+
formEncType?: string;
|
|
863
|
+
formNoValidate?: boolean;
|
|
864
|
+
formId?: string;
|
|
865
|
+
selector?: string;
|
|
866
|
+
}>;
|
|
867
|
+
imageItems: Array<{
|
|
868
|
+
path: string;
|
|
869
|
+
name?: string;
|
|
870
|
+
url?: string;
|
|
871
|
+
width?: number;
|
|
872
|
+
height?: number;
|
|
873
|
+
loading?: string;
|
|
874
|
+
decoding?: string;
|
|
875
|
+
srcset?: string;
|
|
876
|
+
sizes?: string;
|
|
877
|
+
selector?: string;
|
|
878
|
+
}>;
|
|
879
|
+
tableItems: Array<{
|
|
880
|
+
path: string;
|
|
881
|
+
role: string;
|
|
882
|
+
name?: string;
|
|
883
|
+
rowCount: number;
|
|
884
|
+
cellCount: number;
|
|
885
|
+
declaredRowCount?: number;
|
|
886
|
+
declaredColumnCount?: number;
|
|
887
|
+
headers?: string[];
|
|
888
|
+
headerRefs?: Array<{
|
|
889
|
+
path?: string;
|
|
890
|
+
text: string;
|
|
891
|
+
role?: string;
|
|
892
|
+
rowIndex?: number;
|
|
893
|
+
columnIndex?: number;
|
|
894
|
+
sort?: string;
|
|
895
|
+
selector?: string;
|
|
896
|
+
}>;
|
|
897
|
+
ownedRefs?: Array<{
|
|
898
|
+
target: string;
|
|
899
|
+
role?: string;
|
|
900
|
+
name?: string;
|
|
901
|
+
selector?: string;
|
|
902
|
+
}>;
|
|
903
|
+
sampleCells?: string[];
|
|
904
|
+
sampleCellRefs?: Array<{
|
|
905
|
+
path?: string;
|
|
906
|
+
text: string;
|
|
907
|
+
rowIndex?: number;
|
|
908
|
+
columnIndex?: number;
|
|
909
|
+
rowSpan?: number;
|
|
910
|
+
columnSpan?: number;
|
|
911
|
+
headers?: string[];
|
|
912
|
+
rowHeaders?: string[];
|
|
913
|
+
columnHeaders?: string[];
|
|
914
|
+
selected?: boolean;
|
|
915
|
+
current?: SemanticNodeState["current"];
|
|
916
|
+
selector?: string;
|
|
917
|
+
ownedTarget?: string;
|
|
918
|
+
}>;
|
|
919
|
+
selector?: string;
|
|
920
|
+
}>;
|
|
921
|
+
listItems: Array<{
|
|
922
|
+
path: string;
|
|
923
|
+
role: string;
|
|
924
|
+
name?: string;
|
|
925
|
+
itemCount: number;
|
|
926
|
+
sampleItems?: string[];
|
|
927
|
+
itemRefs?: Array<{
|
|
928
|
+
text: string;
|
|
929
|
+
role?: string;
|
|
930
|
+
level?: number;
|
|
931
|
+
posInSet?: number;
|
|
932
|
+
setSize?: number;
|
|
933
|
+
selected?: boolean;
|
|
934
|
+
current?: SemanticNodeState["current"];
|
|
935
|
+
expanded?: boolean;
|
|
936
|
+
selector?: string;
|
|
937
|
+
}>;
|
|
938
|
+
selector?: string;
|
|
939
|
+
}>;
|
|
940
|
+
fieldItems: Array<{
|
|
941
|
+
path: string;
|
|
942
|
+
role: string;
|
|
943
|
+
name?: string;
|
|
944
|
+
description?: string;
|
|
945
|
+
value?: string;
|
|
946
|
+
htmlName?: string;
|
|
947
|
+
htmlType?: string;
|
|
948
|
+
placeholder?: string;
|
|
949
|
+
ariaPlaceholder?: string;
|
|
950
|
+
autocomplete?: string;
|
|
951
|
+
ariaAutocomplete?: string;
|
|
952
|
+
inputMode?: string;
|
|
953
|
+
pattern?: string;
|
|
954
|
+
min?: string;
|
|
955
|
+
max?: string;
|
|
956
|
+
step?: string;
|
|
957
|
+
minLength?: number;
|
|
958
|
+
maxLength?: number;
|
|
959
|
+
labelledBy?: string;
|
|
960
|
+
labelledByText?: string;
|
|
961
|
+
labelledBySelector?: string;
|
|
962
|
+
describedBy?: string;
|
|
963
|
+
describedByText?: string;
|
|
964
|
+
describedBySelector?: string;
|
|
965
|
+
details?: string;
|
|
966
|
+
detailsText?: string;
|
|
967
|
+
detailsSelector?: string;
|
|
968
|
+
errorMessage?: string;
|
|
969
|
+
errorMessageText?: string;
|
|
970
|
+
errorMessageSelector?: string;
|
|
971
|
+
selector?: string;
|
|
972
|
+
state?: SemanticNodeState;
|
|
973
|
+
}>;
|
|
974
|
+
descriptionItems: Array<{
|
|
975
|
+
path: string;
|
|
976
|
+
role: string;
|
|
977
|
+
name?: string;
|
|
978
|
+
description: string;
|
|
979
|
+
selector?: string;
|
|
980
|
+
}>;
|
|
981
|
+
valueItems: Array<{
|
|
982
|
+
path: string;
|
|
983
|
+
role: string;
|
|
984
|
+
name?: string;
|
|
985
|
+
value: string;
|
|
986
|
+
selector?: string;
|
|
987
|
+
}>;
|
|
988
|
+
relationItems: Array<{
|
|
989
|
+
path: string;
|
|
990
|
+
role: string;
|
|
991
|
+
name?: string;
|
|
992
|
+
relation: "controls" | "owns" | "flowto" | "activeDescendant" | "details" | "errorMessage" | "describedBy" | "labelledBy";
|
|
993
|
+
target: string;
|
|
994
|
+
targetRole?: string;
|
|
995
|
+
targetName?: string;
|
|
996
|
+
targetSelector?: string;
|
|
997
|
+
selector?: string;
|
|
998
|
+
}>;
|
|
999
|
+
choiceItems: Array<{
|
|
1000
|
+
path: string;
|
|
1001
|
+
role: string;
|
|
1002
|
+
name: string;
|
|
1003
|
+
level?: number;
|
|
1004
|
+
posInSet?: number;
|
|
1005
|
+
setSize?: number;
|
|
1006
|
+
selected?: boolean;
|
|
1007
|
+
current?: SemanticNodeState["current"];
|
|
1008
|
+
selector?: string;
|
|
1009
|
+
state?: SemanticNodeState;
|
|
1010
|
+
}>;
|
|
1011
|
+
stateItems: Array<{
|
|
1012
|
+
path: string;
|
|
1013
|
+
role: string;
|
|
1014
|
+
name?: string;
|
|
1015
|
+
state: string;
|
|
1016
|
+
stateRaw?: SemanticNodeState;
|
|
1017
|
+
selector?: string;
|
|
1018
|
+
}>;
|
|
1019
|
+
unavailableItems: Array<{
|
|
1020
|
+
path: string;
|
|
1021
|
+
tag: string;
|
|
1022
|
+
role?: string;
|
|
1023
|
+
name?: string;
|
|
1024
|
+
reason: string;
|
|
1025
|
+
selector?: string;
|
|
1026
|
+
}>;
|
|
1027
|
+
};
|
|
1028
|
+
type AgentNext = {
|
|
1029
|
+
mode: AgentContinuationMode;
|
|
1030
|
+
reason: string;
|
|
1031
|
+
loop: AgentLoopDirective;
|
|
1032
|
+
action?: string;
|
|
1033
|
+
execution?: AgentExecutionMode;
|
|
1034
|
+
priority?: "low" | "medium" | "high";
|
|
1035
|
+
priorityReason?: string;
|
|
1036
|
+
url?: string;
|
|
1037
|
+
rank?: number;
|
|
1038
|
+
openResult?: number | "best";
|
|
1039
|
+
readFrom?: string;
|
|
1040
|
+
command?: string;
|
|
1041
|
+
commandArgs?: string[];
|
|
1042
|
+
afterInteractionCommand?: string;
|
|
1043
|
+
afterInteractionCommandArgs?: string[];
|
|
1044
|
+
requiresBrowserInteraction?: boolean;
|
|
1045
|
+
terminal?: boolean;
|
|
1046
|
+
sourceLinkRef?: string;
|
|
1047
|
+
readTarget?: AgentReadTarget;
|
|
1048
|
+
readValue?: AgentReadValue;
|
|
1049
|
+
target?: AgentTarget;
|
|
1050
|
+
browserHtml?: AgentBrowserHtmlCapture;
|
|
1051
|
+
};
|
|
1052
|
+
type AgentLoopDecision = "return" | "execute" | "browser" | "inspect" | "stop";
|
|
1053
|
+
type AgentLoopDirective = {
|
|
1054
|
+
decision: AgentLoopDecision;
|
|
1055
|
+
shouldContinue: boolean;
|
|
1056
|
+
terminal: boolean;
|
|
1057
|
+
reason: string;
|
|
1058
|
+
maxSuggestedIterations: number;
|
|
1059
|
+
};
|
|
1060
|
+
type AgentSignalKind = "content" | "verification" | "search-results" | "source-links" | "browser" | "diagnostic" | "response";
|
|
1061
|
+
type AgentSignalSeverity = "info" | "warning" | "error";
|
|
1062
|
+
type AgentSignal = {
|
|
1063
|
+
kind: AgentSignalKind;
|
|
1064
|
+
severity: AgentSignalSeverity;
|
|
1065
|
+
message: string;
|
|
1066
|
+
};
|
|
1067
|
+
type AgentQualityGateKind = "fetch" | "content" | "source" | "search" | "verification" | "browser" | "diagnostic" | "status";
|
|
1068
|
+
type AgentQualityGate = {
|
|
1069
|
+
kind: AgentQualityGateKind;
|
|
1070
|
+
pass: boolean;
|
|
1071
|
+
severity: AgentSignalSeverity;
|
|
1072
|
+
message: string;
|
|
1073
|
+
score?: number;
|
|
1074
|
+
path?: string;
|
|
1075
|
+
};
|
|
1076
|
+
type AgentExpectedOutcomeKind = "read-evidence" | "open-result" | "retry-fetch" | "run-search" | "capture-html" | "browser-inspection" | "inspect-output" | "stop";
|
|
1077
|
+
type AgentExpectedOutcome = {
|
|
1078
|
+
kind: AgentExpectedOutcomeKind;
|
|
1079
|
+
message: string;
|
|
1080
|
+
};
|
|
1081
|
+
type AgentExecutionPlan = {
|
|
1082
|
+
operation: "return" | "execute-command" | "capture-browser-html" | "inspect-browser" | "inspect-output" | "stop";
|
|
1083
|
+
confidence: "low" | "medium" | "high";
|
|
1084
|
+
reason: string;
|
|
1085
|
+
useFetchedHtml: boolean;
|
|
1086
|
+
needsBrowserHtml: boolean;
|
|
1087
|
+
answerReady: boolean;
|
|
1088
|
+
terminal: boolean;
|
|
1089
|
+
shouldContinue: boolean;
|
|
1090
|
+
maxSuggestedIterations: number;
|
|
1091
|
+
expectedOutcome: AgentExpectedOutcomeKind;
|
|
1092
|
+
readFrom?: string;
|
|
1093
|
+
command?: string;
|
|
1094
|
+
commandArgs?: string[];
|
|
1095
|
+
afterInteractionCommand?: string;
|
|
1096
|
+
afterInteractionCommandArgs?: string[];
|
|
1097
|
+
url?: string;
|
|
1098
|
+
browserHtml?: AgentBrowserHtmlCapture;
|
|
1099
|
+
};
|
|
1100
|
+
type AgentRunbook = {
|
|
1101
|
+
decision: AgentLoopDecision;
|
|
1102
|
+
mode: AgentContinuationMode;
|
|
1103
|
+
operation: AgentExecutionPlan["operation"];
|
|
1104
|
+
action?: string;
|
|
1105
|
+
reason: string;
|
|
1106
|
+
confidence: AgentExecutionPlan["confidence"];
|
|
1107
|
+
answerStatus: AgentAnswerPlan["status"];
|
|
1108
|
+
answerReady: boolean;
|
|
1109
|
+
shouldContinue: boolean;
|
|
1110
|
+
terminal: boolean;
|
|
1111
|
+
maxSuggestedIterations: number;
|
|
1112
|
+
useFetchedHtml: boolean;
|
|
1113
|
+
needsBrowserHtml: boolean;
|
|
1114
|
+
expectedOutcome: AgentExpectedOutcomeKind;
|
|
1115
|
+
command?: string;
|
|
1116
|
+
commandArgs?: string[];
|
|
1117
|
+
afterInteractionCommand?: string;
|
|
1118
|
+
afterInteractionCommandArgs?: string[];
|
|
1119
|
+
readFrom?: string;
|
|
1120
|
+
readValue?: AgentReadValue;
|
|
1121
|
+
url?: string;
|
|
1122
|
+
sourceLinkRef?: string;
|
|
1123
|
+
target?: AgentTarget;
|
|
1124
|
+
browserHtml?: AgentBrowserHtmlCapture;
|
|
1125
|
+
};
|
|
1126
|
+
type AgentExecutorStep = {
|
|
1127
|
+
instruction: string;
|
|
1128
|
+
decision: AgentLoopDecision;
|
|
1129
|
+
mode: AgentContinuationMode;
|
|
1130
|
+
operation: AgentExecutionPlan["operation"];
|
|
1131
|
+
action?: string;
|
|
1132
|
+
status: AgentAnswerPlan["status"];
|
|
1133
|
+
confidence: AgentExecutionPlan["confidence"];
|
|
1134
|
+
answerReady: boolean;
|
|
1135
|
+
shouldContinue: boolean;
|
|
1136
|
+
terminal: boolean;
|
|
1137
|
+
maxSuggestedIterations: number;
|
|
1138
|
+
expectedOutcome: AgentExpectedOutcomeKind;
|
|
1139
|
+
useCitationIds?: string[];
|
|
1140
|
+
verificationFoundQueries?: string[];
|
|
1141
|
+
verificationMissingQueries?: string[];
|
|
1142
|
+
command?: string;
|
|
1143
|
+
commandArgs?: string[];
|
|
1144
|
+
afterInteractionCommand?: string;
|
|
1145
|
+
afterInteractionCommandArgs?: string[];
|
|
1146
|
+
readFrom?: string;
|
|
1147
|
+
readTarget?: AgentReadTarget;
|
|
1148
|
+
readValue?: AgentReadValue;
|
|
1149
|
+
url?: string;
|
|
1150
|
+
sourceLinkRef?: string;
|
|
1151
|
+
target?: AgentTarget;
|
|
1152
|
+
browserHtml?: AgentBrowserHtmlCapture;
|
|
1153
|
+
};
|
|
1154
|
+
type AgentHandoff = {
|
|
1155
|
+
instruction: string;
|
|
1156
|
+
decision: AgentLoopDecision;
|
|
1157
|
+
mode: AgentContinuationMode;
|
|
1158
|
+
operation: AgentExecutionPlan["operation"];
|
|
1159
|
+
action?: string;
|
|
1160
|
+
confidence: AgentExecutionPlan["confidence"];
|
|
1161
|
+
priority?: "low" | "medium" | "high";
|
|
1162
|
+
priorityReason?: string;
|
|
1163
|
+
answerStatus: AgentAnswerPlan["status"];
|
|
1164
|
+
answerReady: boolean;
|
|
1165
|
+
shouldContinue: boolean;
|
|
1166
|
+
terminal: boolean;
|
|
1167
|
+
maxSuggestedIterations: number;
|
|
1168
|
+
expectedOutcome: AgentExpectedOutcomeKind;
|
|
1169
|
+
reason: string;
|
|
1170
|
+
useCitationIds?: string[];
|
|
1171
|
+
verificationFoundQueries?: string[];
|
|
1172
|
+
verificationMissingQueries?: string[];
|
|
1173
|
+
answerEvidence?: AgentCitation[];
|
|
1174
|
+
resultChoices?: AgentResultChoice[];
|
|
1175
|
+
sourceChoices?: AgentSourceChoice[];
|
|
1176
|
+
sourceSearch?: AgentSourceSearch;
|
|
1177
|
+
signals?: AgentSignal[];
|
|
1178
|
+
qualityGates?: AgentQualityGate[];
|
|
1179
|
+
readTarget?: AgentReadTarget;
|
|
1180
|
+
readFrom?: string;
|
|
1181
|
+
readValue?: AgentReadValue;
|
|
1182
|
+
command?: string;
|
|
1183
|
+
commandArgs?: string[];
|
|
1184
|
+
afterInteractionCommand?: string;
|
|
1185
|
+
afterInteractionCommandArgs?: string[];
|
|
1186
|
+
url?: string;
|
|
1187
|
+
sourceLinkRef?: string;
|
|
1188
|
+
target?: AgentTarget;
|
|
1189
|
+
browserHtml?: AgentBrowserHtmlCapture;
|
|
1190
|
+
};
|
|
1191
|
+
type AgentBrowserHtmlCapture = {
|
|
1192
|
+
url?: string;
|
|
1193
|
+
htmlFile: string;
|
|
1194
|
+
captureScript: string;
|
|
1195
|
+
reason?: string;
|
|
1196
|
+
reasonCode?: AgentBrowserHtmlReasonCode;
|
|
1197
|
+
command?: string;
|
|
1198
|
+
commandArgs?: string[];
|
|
1199
|
+
afterInteractionCommand?: string;
|
|
1200
|
+
afterInteractionCommandArgs?: string[];
|
|
1201
|
+
};
|
|
1202
|
+
type AgentReadTarget = {
|
|
1203
|
+
path: string;
|
|
1204
|
+
kind?: "verification" | "evidence" | "semantic" | "structured" | "hidden-data" | "interaction" | "barrier" | "navigation" | "code" | "media" | "resource" | "source-search" | "page-check";
|
|
1205
|
+
reason: string;
|
|
1206
|
+
count?: number;
|
|
1207
|
+
score?: number;
|
|
1208
|
+
primary?: boolean;
|
|
1209
|
+
};
|
|
1210
|
+
type AgentReadValueScalar = string | number | boolean | null;
|
|
1211
|
+
type AgentReadValueKind = "array" | "object" | "string" | "number" | "boolean" | "null";
|
|
1212
|
+
type AgentReadValueReference = {
|
|
1213
|
+
path: string;
|
|
1214
|
+
valuePath: string;
|
|
1215
|
+
valueType: "array";
|
|
1216
|
+
count: number;
|
|
1217
|
+
} | {
|
|
1218
|
+
path: string;
|
|
1219
|
+
valuePath: string;
|
|
1220
|
+
valueType: "object";
|
|
1221
|
+
};
|
|
1222
|
+
type AgentReadValuePayload = AgentReadValueScalar | AgentCitation | AgentFindMatch | AgentTarget | AgentSourceSearchResult | AgentSemanticSummary | AgentPageEvidence | AgentPageDataTable | AgentPageBarrier | AgentPageForm | AgentActionTargetChoice | AgentPageHydration | AgentPageApiEndpoint | AgentPageClientState | AgentPageRuntime | AgentPageConfig | AgentPageAppHint | AgentPageMobileHint | AgentPageTopic | AgentPageContactPoint | AgentPageKeyValue | AgentPageMetaFact | AgentPageProvenance | AgentPageHttpPolicy | AgentPageSchemaFact | AgentPageOffer | AgentPageIdentity | AgentPageDataset | AgentPageTimeline | AgentPageFaq | AgentPageBreadcrumb | AgentPageSection | AgentPagePagination | AgentPageToc | AgentPageCodeBlock | AgentPageCitation | AgentPageMedia | AgentPageResource | AgentPageEmbed | AgentPageTranscript | AgentPageAuthorLink;
|
|
1223
|
+
type AgentReadValueInline = {
|
|
1224
|
+
path: string;
|
|
1225
|
+
value: AgentReadValuePayload | AgentReadValuePayload[];
|
|
1226
|
+
};
|
|
1227
|
+
type AgentReadValue = AgentReadValueInline | AgentReadValueReference;
|
|
1228
|
+
type AgentCitation = {
|
|
1229
|
+
kind: "content" | "verification" | "search-result" | "source-link" | "page-check";
|
|
1230
|
+
id: string;
|
|
1231
|
+
path: string;
|
|
1232
|
+
confidence?: "low" | "medium" | "high";
|
|
1233
|
+
reason?: string;
|
|
1234
|
+
text?: string;
|
|
1235
|
+
title?: string;
|
|
1236
|
+
url?: string;
|
|
1237
|
+
score?: number;
|
|
1238
|
+
};
|
|
1239
|
+
type AgentAnswerPlan = {
|
|
1240
|
+
status: "ready" | "needs-more" | "blocked" | "error";
|
|
1241
|
+
confidence: "low" | "medium" | "high";
|
|
1242
|
+
reason: string;
|
|
1243
|
+
gaps: string[];
|
|
1244
|
+
useCitationIds: string[];
|
|
1245
|
+
nextAction?: string;
|
|
1246
|
+
command?: string;
|
|
1247
|
+
commandArgs?: string[];
|
|
1248
|
+
afterInteractionCommand?: string;
|
|
1249
|
+
afterInteractionCommandArgs?: string[];
|
|
1250
|
+
url?: string;
|
|
1251
|
+
readFrom?: string;
|
|
1252
|
+
};
|
|
1253
|
+
type AgentTarget = {
|
|
1254
|
+
title?: string;
|
|
1255
|
+
url: string;
|
|
1256
|
+
urlPath?: string;
|
|
1257
|
+
urlQuery?: string;
|
|
1258
|
+
host?: string;
|
|
1259
|
+
path?: string;
|
|
1260
|
+
text?: string;
|
|
1261
|
+
source?: string;
|
|
1262
|
+
rank?: number;
|
|
1263
|
+
snippet?: string;
|
|
1264
|
+
selector?: string;
|
|
1265
|
+
sourceType?: string;
|
|
1266
|
+
sourceScore?: number;
|
|
1267
|
+
sourceHints?: string[];
|
|
1268
|
+
dateText?: string;
|
|
1269
|
+
date?: string;
|
|
1270
|
+
dateIso?: string;
|
|
1271
|
+
dateUnixMs?: number;
|
|
1272
|
+
datePrecision?: "day" | "month" | "year";
|
|
1273
|
+
dateSource?: "title" | "snippet";
|
|
1274
|
+
sitelinks?: Array<{
|
|
1275
|
+
title: string;
|
|
1276
|
+
url: string;
|
|
1277
|
+
selector?: string;
|
|
1278
|
+
command?: string;
|
|
1279
|
+
commandArgs?: string[];
|
|
1280
|
+
}>;
|
|
1281
|
+
relevance?: "low" | "medium" | "high";
|
|
1282
|
+
matchedTerms?: string[];
|
|
1283
|
+
findMatches?: string[];
|
|
1284
|
+
isLikelyOfficial?: boolean;
|
|
1285
|
+
selectionReason?: string;
|
|
1286
|
+
};
|
|
1287
|
+
type AgentResultChoice = AgentTarget & {
|
|
1288
|
+
id: string;
|
|
1289
|
+
path: string;
|
|
1290
|
+
recommended?: boolean;
|
|
1291
|
+
primary?: boolean;
|
|
1292
|
+
recommendedPath?: string;
|
|
1293
|
+
openResult?: number | "best";
|
|
1294
|
+
command?: string;
|
|
1295
|
+
commandArgs?: string[];
|
|
1296
|
+
};
|
|
1297
|
+
type AgentSourceChoice = AgentTarget & {
|
|
1298
|
+
id: string;
|
|
1299
|
+
path: string;
|
|
1300
|
+
kind?: "internal" | "external";
|
|
1301
|
+
primary?: boolean;
|
|
1302
|
+
command?: string;
|
|
1303
|
+
commandArgs?: string[];
|
|
1304
|
+
};
|
|
1305
|
+
type AgentFormHiddenField = {
|
|
1306
|
+
name?: string;
|
|
1307
|
+
value?: string;
|
|
1308
|
+
selector?: string;
|
|
1309
|
+
};
|
|
1310
|
+
type AgentFormField = {
|
|
1311
|
+
name?: string;
|
|
1312
|
+
type: string;
|
|
1313
|
+
label?: string;
|
|
1314
|
+
placeholder?: string;
|
|
1315
|
+
value?: string;
|
|
1316
|
+
autocomplete?: string;
|
|
1317
|
+
inputMode?: string;
|
|
1318
|
+
pattern?: string;
|
|
1319
|
+
min?: string;
|
|
1320
|
+
max?: string;
|
|
1321
|
+
step?: string;
|
|
1322
|
+
minLength?: number;
|
|
1323
|
+
maxLength?: number;
|
|
1324
|
+
required?: boolean;
|
|
1325
|
+
checked?: boolean;
|
|
1326
|
+
disabled?: boolean;
|
|
1327
|
+
readonly?: boolean;
|
|
1328
|
+
invalid?: SemanticNodeState["invalid"];
|
|
1329
|
+
selector?: string;
|
|
1330
|
+
options?: string[];
|
|
1331
|
+
selectedOption?: string;
|
|
1332
|
+
selectedValue?: string;
|
|
1333
|
+
};
|
|
1334
|
+
type AgentPageForm = {
|
|
1335
|
+
id?: string;
|
|
1336
|
+
path?: string;
|
|
1337
|
+
rank: number;
|
|
1338
|
+
method: string;
|
|
1339
|
+
fieldCount: number;
|
|
1340
|
+
hiddenFieldCount: number;
|
|
1341
|
+
text?: string;
|
|
1342
|
+
actionUrl?: string;
|
|
1343
|
+
actionUrlPath?: string;
|
|
1344
|
+
actionUrlQuery?: string;
|
|
1345
|
+
formId?: string;
|
|
1346
|
+
formName?: string;
|
|
1347
|
+
formTarget?: string;
|
|
1348
|
+
formEncType?: string;
|
|
1349
|
+
formAcceptCharset?: string;
|
|
1350
|
+
formNoValidate?: boolean;
|
|
1351
|
+
submitText?: string;
|
|
1352
|
+
submitType?: string;
|
|
1353
|
+
submitName?: string;
|
|
1354
|
+
submitValue?: string;
|
|
1355
|
+
submitDisabled?: boolean;
|
|
1356
|
+
submitSelector?: string;
|
|
1357
|
+
submitFormActionUrl?: string;
|
|
1358
|
+
submitFormActionUrlPath?: string;
|
|
1359
|
+
submitFormActionUrlQuery?: string;
|
|
1360
|
+
submitFormMethod?: string;
|
|
1361
|
+
submitFormTarget?: string;
|
|
1362
|
+
submitFormEncType?: string;
|
|
1363
|
+
submitFormNoValidate?: boolean;
|
|
1364
|
+
submitFormId?: string;
|
|
1365
|
+
queryField?: string;
|
|
1366
|
+
urlTemplate?: string;
|
|
1367
|
+
urlTemplatePath?: string;
|
|
1368
|
+
urlTemplateQuery?: string;
|
|
1369
|
+
selector?: string;
|
|
1370
|
+
hiddenFields?: AgentFormHiddenField[];
|
|
1371
|
+
fields: AgentFormField[];
|
|
1372
|
+
};
|
|
1373
|
+
type AgentFormChoice = AgentPageForm & {
|
|
1374
|
+
id: string;
|
|
1375
|
+
path: string;
|
|
1376
|
+
text: string;
|
|
1377
|
+
formAcceptCharset?: string;
|
|
1378
|
+
hiddenFields: AgentFormHiddenField[];
|
|
1379
|
+
command?: string;
|
|
1380
|
+
commandArgs?: string[];
|
|
1381
|
+
};
|
|
1382
|
+
type AgentActionTargetChoice = {
|
|
1383
|
+
id: string;
|
|
1384
|
+
path: string;
|
|
1385
|
+
rank: number;
|
|
1386
|
+
kind: "search" | "read" | "download" | "subscribe" | "action";
|
|
1387
|
+
name: string;
|
|
1388
|
+
text: string;
|
|
1389
|
+
source: "json-ld" | "link";
|
|
1390
|
+
targetUrl?: string;
|
|
1391
|
+
targetUrlPath?: string;
|
|
1392
|
+
targetUrlQuery?: string;
|
|
1393
|
+
urlTemplate?: string;
|
|
1394
|
+
urlTemplatePath?: string;
|
|
1395
|
+
urlTemplateQuery?: string;
|
|
1396
|
+
queryInput?: string;
|
|
1397
|
+
method?: string;
|
|
1398
|
+
encodingType?: string;
|
|
1399
|
+
disabled?: boolean;
|
|
1400
|
+
pressed?: SemanticNodeState["pressed"];
|
|
1401
|
+
expanded?: boolean;
|
|
1402
|
+
haspopup?: SemanticNodeState["haspopup"];
|
|
1403
|
+
controls?: string;
|
|
1404
|
+
selector?: string;
|
|
1405
|
+
command?: string;
|
|
1406
|
+
commandArgs?: string[];
|
|
1407
|
+
};
|
|
1408
|
+
type AgentSourceSearchResult = AgentTarget & {
|
|
1409
|
+
id: string;
|
|
1410
|
+
path: string;
|
|
1411
|
+
openResult?: number | "best";
|
|
1412
|
+
command?: string;
|
|
1413
|
+
commandArgs?: string[];
|
|
1414
|
+
};
|
|
1415
|
+
type AgentSourceSearch = {
|
|
1416
|
+
query: string;
|
|
1417
|
+
engine: string;
|
|
1418
|
+
selectedEngine?: string;
|
|
1419
|
+
searchUrl: string;
|
|
1420
|
+
lang?: string;
|
|
1421
|
+
region?: string;
|
|
1422
|
+
findQueries?: string[];
|
|
1423
|
+
selectedRank: number;
|
|
1424
|
+
selectedTitle: string;
|
|
1425
|
+
selectedUrl: string;
|
|
1426
|
+
selectedResult?: AgentSourceSearchResult;
|
|
1427
|
+
alternateResults?: AgentSourceSearchResult[];
|
|
1428
|
+
};
|
|
1429
|
+
type AgentSummary = {
|
|
1430
|
+
contract: AgentContract;
|
|
1431
|
+
status: AgentStatus;
|
|
1432
|
+
pageKind: string;
|
|
1433
|
+
pageTitle?: string;
|
|
1434
|
+
pageCanonicalUrl?: string;
|
|
1435
|
+
pageLang?: string;
|
|
1436
|
+
pageDir?: string;
|
|
1437
|
+
pageSiteName?: string;
|
|
1438
|
+
pageAuthor?: string;
|
|
1439
|
+
pagePublishedTime?: string;
|
|
1440
|
+
pageModifiedTime?: string;
|
|
1441
|
+
pageStructuredDataTypes?: string[];
|
|
1442
|
+
summary: string;
|
|
1443
|
+
routingIntent: AgentRoutingIntent;
|
|
1444
|
+
continuationMode: AgentContinuationMode;
|
|
1445
|
+
next: AgentNext;
|
|
1446
|
+
runbook: AgentRunbook;
|
|
1447
|
+
runbookDecision?: AgentRunbook["decision"];
|
|
1448
|
+
runbookMode?: AgentRunbook["mode"];
|
|
1449
|
+
runbookOperation?: AgentRunbook["operation"];
|
|
1450
|
+
runbookActionName?: string;
|
|
1451
|
+
runbookReason?: string;
|
|
1452
|
+
runbookConfidence?: AgentRunbook["confidence"];
|
|
1453
|
+
runbookAnswerStatus?: AgentRunbook["answerStatus"];
|
|
1454
|
+
runbookAnswerReady?: boolean;
|
|
1455
|
+
runbookShouldContinue?: boolean;
|
|
1456
|
+
runbookTerminal?: boolean;
|
|
1457
|
+
runbookMaxSuggestedIterations?: number;
|
|
1458
|
+
runbookExpectedOutcome?: AgentRunbook["expectedOutcome"];
|
|
1459
|
+
runbookReadFrom?: string;
|
|
1460
|
+
runbookReadTargetKind?: AgentReadTarget["kind"];
|
|
1461
|
+
runbookReadTargetCount?: number;
|
|
1462
|
+
runbookReadTargetScore?: number;
|
|
1463
|
+
runbookReadTargetPrimary?: boolean;
|
|
1464
|
+
runbookReadTargetReason?: string;
|
|
1465
|
+
runbookReadValuePath?: string;
|
|
1466
|
+
runbookReadValueType?: AgentReadValueKind;
|
|
1467
|
+
runbookReadValueCount?: number;
|
|
1468
|
+
runbookReadValueReferencePath?: string;
|
|
1469
|
+
runbookCommand?: string;
|
|
1470
|
+
runbookCommandArgs?: string[];
|
|
1471
|
+
runbookUrl?: string;
|
|
1472
|
+
nextActionName?: string;
|
|
1473
|
+
nextExecution?: AgentExecutionMode;
|
|
1474
|
+
nextCommand?: string;
|
|
1475
|
+
nextCommandArgs?: string[];
|
|
1476
|
+
nextAfterInteractionCommand?: string;
|
|
1477
|
+
nextAfterInteractionCommandArgs?: string[];
|
|
1478
|
+
nextReadFrom?: string;
|
|
1479
|
+
nextReadTargetKind?: AgentReadTarget["kind"];
|
|
1480
|
+
nextReadTargetCount?: number;
|
|
1481
|
+
nextReadTargetScore?: number;
|
|
1482
|
+
nextReadTargetPrimary?: boolean;
|
|
1483
|
+
nextReadTargetReason?: string;
|
|
1484
|
+
nextReadValuePath?: string;
|
|
1485
|
+
nextReadValueType?: AgentReadValueKind;
|
|
1486
|
+
nextReadValueCount?: number;
|
|
1487
|
+
nextReadValueReferencePath?: string;
|
|
1488
|
+
nextUrl?: string;
|
|
1489
|
+
executor: AgentExecutorStep;
|
|
1490
|
+
handoff?: AgentHandoff;
|
|
1491
|
+
expectedOutcome: AgentExpectedOutcome;
|
|
1492
|
+
executionPlan: AgentExecutionPlan;
|
|
1493
|
+
expectedOutcomeKind?: AgentExpectedOutcome["kind"];
|
|
1494
|
+
expectedOutcomeMessage?: string;
|
|
1495
|
+
executionPlanOperation?: AgentExecutionPlan["operation"];
|
|
1496
|
+
executionPlanConfidence?: AgentExecutionPlan["confidence"];
|
|
1497
|
+
executionPlanReason?: string;
|
|
1498
|
+
executionPlanAnswerReady?: boolean;
|
|
1499
|
+
executionPlanShouldContinue?: boolean;
|
|
1500
|
+
executionPlanTerminal?: boolean;
|
|
1501
|
+
executionPlanExpectedOutcome?: AgentExpectedOutcome["kind"];
|
|
1502
|
+
executionPlanReadFrom?: string;
|
|
1503
|
+
executionPlanReadTargetKind?: AgentReadTarget["kind"];
|
|
1504
|
+
executionPlanReadTargetCount?: number;
|
|
1505
|
+
executionPlanReadTargetScore?: number;
|
|
1506
|
+
executionPlanReadTargetPrimary?: boolean;
|
|
1507
|
+
executionPlanReadTargetReason?: string;
|
|
1508
|
+
executionPlanCommand?: string;
|
|
1509
|
+
executionPlanCommandArgs?: string[];
|
|
1510
|
+
executionPlanAfterInteractionCommand?: string;
|
|
1511
|
+
executionPlanAfterInteractionCommandArgs?: string[];
|
|
1512
|
+
executionPlanUrl?: string;
|
|
1513
|
+
answerPlan?: AgentAnswerPlan;
|
|
1514
|
+
searchDecision?: AgentSearchDecision;
|
|
1515
|
+
pageDecision?: AgentPageDecision;
|
|
1516
|
+
searchDecisionName?: string;
|
|
1517
|
+
searchDecisionConfidence?: "low" | "medium" | "high";
|
|
1518
|
+
searchDecisionReason?: string;
|
|
1519
|
+
searchDecisionResultCount?: number;
|
|
1520
|
+
searchDecisionHighRelevanceCount?: number;
|
|
1521
|
+
searchDecisionMediumRelevanceCount?: number;
|
|
1522
|
+
searchDecisionLowRelevanceCount?: number;
|
|
1523
|
+
searchDecisionOfficialCount?: number;
|
|
1524
|
+
searchDecisionFindMatchCount?: number;
|
|
1525
|
+
searchDecisionRecommendedRank?: number;
|
|
1526
|
+
searchDecisionRecommendedPath?: string;
|
|
1527
|
+
searchDecisionRecommendedTitle?: string;
|
|
1528
|
+
searchDecisionRecommendedUrl?: string;
|
|
1529
|
+
searchDecisionRecommendedUrlPath?: string;
|
|
1530
|
+
searchDecisionRecommendedUrlQuery?: string;
|
|
1531
|
+
searchDecisionRecommendedSource?: string;
|
|
1532
|
+
searchDecisionRecommendedSourceScore?: number;
|
|
1533
|
+
searchDecisionRecommendedSourceType?: AgentTarget["sourceType"];
|
|
1534
|
+
searchDecisionRecommendedSourceHints?: string[];
|
|
1535
|
+
searchDecisionRecommendedDateText?: string;
|
|
1536
|
+
searchDecisionRecommendedDateIso?: string;
|
|
1537
|
+
searchDecisionRecommendedDateUnixMs?: number;
|
|
1538
|
+
searchDecisionRecommendedDatePrecision?: "day" | "month" | "year";
|
|
1539
|
+
searchDecisionRecommendedDateSource?: "title" | "snippet";
|
|
1540
|
+
searchDecisionRecommendedRelevance?: "low" | "medium" | "high";
|
|
1541
|
+
searchDecisionRecommendedLikelyOfficial?: boolean;
|
|
1542
|
+
searchDecisionFirstOfficialRank?: number;
|
|
1543
|
+
searchDecisionFirstOfficialPath?: string;
|
|
1544
|
+
searchDecisionFirstOfficialTitle?: string;
|
|
1545
|
+
searchDecisionFirstOfficialUrl?: string;
|
|
1546
|
+
searchDecisionFirstOfficialSource?: string;
|
|
1547
|
+
searchDecisionFirstOfficialSourceScore?: number;
|
|
1548
|
+
searchDecisionFirstOfficialSourceType?: AgentTarget["sourceType"];
|
|
1549
|
+
searchDecisionFirstOfficialSourceHints?: string[];
|
|
1550
|
+
searchDecisionFirstOfficialDateText?: string;
|
|
1551
|
+
searchDecisionFirstOfficialDateIso?: string;
|
|
1552
|
+
searchDecisionFirstOfficialDateUnixMs?: number;
|
|
1553
|
+
searchDecisionFirstOfficialDatePrecision?: "day" | "month" | "year";
|
|
1554
|
+
searchDecisionFirstOfficialDateSource?: "title" | "snippet";
|
|
1555
|
+
searchDecisionFirstOfficialRelevance?: "low" | "medium" | "high";
|
|
1556
|
+
searchDecisionFirstOfficialCommand?: string;
|
|
1557
|
+
searchDecisionFirstOfficialCommandArgs?: string[];
|
|
1558
|
+
searchDecisionCommand?: string;
|
|
1559
|
+
searchDecisionCommandArgs?: string[];
|
|
1560
|
+
pageDecisionName?: string;
|
|
1561
|
+
pageDecisionConfidence?: "low" | "medium" | "high";
|
|
1562
|
+
pageDecisionReason?: string;
|
|
1563
|
+
pageDecisionReadability?: "low" | "medium" | "high";
|
|
1564
|
+
pageDecisionReadabilityScore?: number;
|
|
1565
|
+
pageDecisionEvidenceCount?: number;
|
|
1566
|
+
pageDecisionEvidenceQualityScore?: number;
|
|
1567
|
+
pageDecisionSourceLinkCount?: number;
|
|
1568
|
+
pageDecisionSourceQualityScore?: number;
|
|
1569
|
+
pageDecisionReadFrom?: string;
|
|
1570
|
+
pageDecisionReadTargetKind?: AgentReadTarget["kind"];
|
|
1571
|
+
pageDecisionReadTargetCount?: number;
|
|
1572
|
+
pageDecisionReadTargetScore?: number;
|
|
1573
|
+
pageDecisionReadTargetPrimary?: boolean;
|
|
1574
|
+
pageDecisionReadTargetReason?: string;
|
|
1575
|
+
pageDecisionUrl?: string;
|
|
1576
|
+
pageDecisionCommand?: string;
|
|
1577
|
+
pageDecisionCommandArgs?: string[];
|
|
1578
|
+
semanticSummary?: AgentSemanticSummary;
|
|
1579
|
+
semanticNodeCount?: number;
|
|
1580
|
+
semanticNamedRoleCount?: number;
|
|
1581
|
+
semanticInteractiveCount?: number;
|
|
1582
|
+
semanticFocusableCount?: number;
|
|
1583
|
+
semanticHeadingCount?: number;
|
|
1584
|
+
semanticLandmarkCount?: number;
|
|
1585
|
+
semanticLinkCount?: number;
|
|
1586
|
+
semanticButtonCount?: number;
|
|
1587
|
+
semanticImageCount?: number;
|
|
1588
|
+
semanticTableCount?: number;
|
|
1589
|
+
semanticListCount?: number;
|
|
1590
|
+
semanticFieldCount?: number;
|
|
1591
|
+
semanticDescriptionCount?: number;
|
|
1592
|
+
semanticValueCount?: number;
|
|
1593
|
+
semanticRelationCount?: number;
|
|
1594
|
+
semanticChoiceCount?: number;
|
|
1595
|
+
semanticStateCount?: number;
|
|
1596
|
+
semanticUnavailableCount?: number;
|
|
1597
|
+
semanticTopRole?: string;
|
|
1598
|
+
semanticTopRoleCount?: number;
|
|
1599
|
+
semanticOutlineCount?: number;
|
|
1600
|
+
semanticTopOutlinePath?: string;
|
|
1601
|
+
semanticTopOutlineKind?: "heading" | "landmark";
|
|
1602
|
+
semanticTopOutlineRole?: string;
|
|
1603
|
+
semanticTopOutlineText?: string;
|
|
1604
|
+
semanticTopOutlineLevel?: number;
|
|
1605
|
+
semanticTopOutlineDepth?: number;
|
|
1606
|
+
semanticTopOutlineParentPath?: string;
|
|
1607
|
+
semanticTopOutlineParentRole?: string;
|
|
1608
|
+
semanticTopOutlineParentName?: string;
|
|
1609
|
+
semanticTopOutlineSelector?: string;
|
|
1610
|
+
semanticKeyboardShortcutCount?: number;
|
|
1611
|
+
semanticTopKeyboardShortcutPath?: string;
|
|
1612
|
+
semanticTopKeyboardShortcutRole?: string;
|
|
1613
|
+
semanticTopKeyboardShortcutName?: string;
|
|
1614
|
+
semanticTopKeyboardShortcutKeys?: string[];
|
|
1615
|
+
semanticTopKeyboardShortcutAccessKey?: string;
|
|
1616
|
+
semanticTopKeyboardShortcutTabIndex?: number;
|
|
1617
|
+
semanticTopKeyboardShortcutFocusable?: boolean;
|
|
1618
|
+
semanticTopKeyboardShortcutSelector?: string;
|
|
1619
|
+
semanticTopAriaKeyShortcutPath?: string;
|
|
1620
|
+
semanticTopAriaKeyShortcutRole?: string;
|
|
1621
|
+
semanticTopAriaKeyShortcutName?: string;
|
|
1622
|
+
semanticTopAriaKeyShortcutKeys?: string[];
|
|
1623
|
+
semanticTopAriaKeyShortcutTabIndex?: number;
|
|
1624
|
+
semanticTopAriaKeyShortcutFocusable?: boolean;
|
|
1625
|
+
semanticTopAriaKeyShortcutSelector?: string;
|
|
1626
|
+
semanticTopHeading?: string;
|
|
1627
|
+
semanticTopHeadingPath?: string;
|
|
1628
|
+
semanticTopHeadingLevel?: number;
|
|
1629
|
+
semanticTopHeadingSelector?: string;
|
|
1630
|
+
semanticTopLandmark?: string;
|
|
1631
|
+
semanticTopLandmarkPath?: string;
|
|
1632
|
+
semanticTopLandmarkRole?: string;
|
|
1633
|
+
semanticTopLandmarkName?: string;
|
|
1634
|
+
semanticTopLandmarkSelector?: string;
|
|
1635
|
+
semanticTopNamedRole?: string;
|
|
1636
|
+
semanticTopNamedRolePath?: string;
|
|
1637
|
+
semanticTopNamedRoleRole?: string;
|
|
1638
|
+
semanticTopNamedRoleName?: string;
|
|
1639
|
+
semanticTopNamedRoleDescription?: string;
|
|
1640
|
+
semanticTopNamedRoleSelector?: string;
|
|
1641
|
+
semanticTopInteractiveRole?: string;
|
|
1642
|
+
semanticTopInteractivePath?: string;
|
|
1643
|
+
semanticTopInteractiveName?: string;
|
|
1644
|
+
semanticTopInteractiveRoleDescription?: string;
|
|
1645
|
+
semanticTopInteractiveDescription?: string;
|
|
1646
|
+
semanticTopInteractiveValue?: string;
|
|
1647
|
+
semanticTopInteractiveState?: string;
|
|
1648
|
+
semanticTopInteractiveDisabled?: boolean;
|
|
1649
|
+
semanticTopInteractivePressed?: SemanticNodeState["pressed"];
|
|
1650
|
+
semanticTopInteractiveExpanded?: boolean;
|
|
1651
|
+
semanticTopInteractiveHaspopup?: SemanticNodeState["haspopup"];
|
|
1652
|
+
semanticTopInteractiveControls?: string;
|
|
1653
|
+
semanticTopInteractiveControlsTargetRole?: string;
|
|
1654
|
+
semanticTopInteractiveControlsTargetName?: string;
|
|
1655
|
+
semanticTopInteractiveControlsTargetSelector?: string;
|
|
1656
|
+
semanticTopInteractiveSelector?: string;
|
|
1657
|
+
semanticTopFocusableRole?: string;
|
|
1658
|
+
semanticTopFocusablePath?: string;
|
|
1659
|
+
semanticTopFocusableName?: string;
|
|
1660
|
+
semanticTopFocusableRoleDescription?: string;
|
|
1661
|
+
semanticTopFocusableState?: string;
|
|
1662
|
+
semanticTopFocusableDisabled?: boolean;
|
|
1663
|
+
semanticTopFocusablePressed?: SemanticNodeState["pressed"];
|
|
1664
|
+
semanticTopFocusableExpanded?: boolean;
|
|
1665
|
+
semanticTopFocusableHaspopup?: SemanticNodeState["haspopup"];
|
|
1666
|
+
semanticTopFocusableControls?: string;
|
|
1667
|
+
semanticTopFocusableControlsTargetRole?: string;
|
|
1668
|
+
semanticTopFocusableControlsTargetName?: string;
|
|
1669
|
+
semanticTopFocusableControlsTargetSelector?: string;
|
|
1670
|
+
semanticTopFocusableSelector?: string;
|
|
1671
|
+
semanticTopLinkName?: string;
|
|
1672
|
+
semanticTopLinkPath?: string;
|
|
1673
|
+
semanticTopLinkUrl?: string;
|
|
1674
|
+
semanticTopLinkUrlPath?: string;
|
|
1675
|
+
semanticTopLinkUrlQuery?: string;
|
|
1676
|
+
semanticTopLinkTarget?: string;
|
|
1677
|
+
semanticTopLinkRel?: string[];
|
|
1678
|
+
semanticTopLinkType?: string;
|
|
1679
|
+
semanticTopLinkHreflang?: string;
|
|
1680
|
+
semanticTopLinkState?: string;
|
|
1681
|
+
semanticTopLinkCurrent?: SemanticNodeState["current"];
|
|
1682
|
+
semanticTopLinkDownload?: string | true;
|
|
1683
|
+
semanticTopLinkSelector?: string;
|
|
1684
|
+
semanticTopCurrentLinkName?: string;
|
|
1685
|
+
semanticTopCurrentLinkPath?: string;
|
|
1686
|
+
semanticTopCurrentLinkUrl?: string;
|
|
1687
|
+
semanticTopCurrentLinkUrlPath?: string;
|
|
1688
|
+
semanticTopCurrentLinkUrlQuery?: string;
|
|
1689
|
+
semanticTopCurrentLinkTarget?: string;
|
|
1690
|
+
semanticTopCurrentLinkRel?: string[];
|
|
1691
|
+
semanticTopCurrentLinkType?: string;
|
|
1692
|
+
semanticTopCurrentLinkHreflang?: string;
|
|
1693
|
+
semanticTopCurrentLinkState?: string;
|
|
1694
|
+
semanticTopCurrentLinkCurrent?: SemanticNodeState["current"];
|
|
1695
|
+
semanticTopCurrentLinkDownload?: string | true;
|
|
1696
|
+
semanticTopCurrentLinkSelector?: string;
|
|
1697
|
+
semanticInPageLinkCount?: number;
|
|
1698
|
+
semanticTopInPageLinkPath?: string;
|
|
1699
|
+
semanticTopInPageLinkKind?: "skip" | "anchor";
|
|
1700
|
+
semanticTopInPageLinkName?: string;
|
|
1701
|
+
semanticTopInPageLinkUrl?: string;
|
|
1702
|
+
semanticTopInPageLinkUrlPath?: string;
|
|
1703
|
+
semanticTopInPageLinkUrlQuery?: string;
|
|
1704
|
+
semanticTopInPageLinkTargetId?: string;
|
|
1705
|
+
semanticTopInPageLinkSelector?: string;
|
|
1706
|
+
semanticTopButtonName?: string;
|
|
1707
|
+
semanticTopButtonPath?: string;
|
|
1708
|
+
semanticTopButtonRoleDescription?: string;
|
|
1709
|
+
semanticTopButtonDescription?: string;
|
|
1710
|
+
semanticTopButtonType?: string;
|
|
1711
|
+
semanticTopButtonState?: string;
|
|
1712
|
+
semanticTopButtonDisabled?: boolean;
|
|
1713
|
+
semanticTopButtonPressed?: SemanticNodeState["pressed"];
|
|
1714
|
+
semanticTopButtonExpanded?: boolean;
|
|
1715
|
+
semanticTopButtonHaspopup?: SemanticNodeState["haspopup"];
|
|
1716
|
+
semanticTopButtonControls?: string;
|
|
1717
|
+
semanticTopButtonControlsTargetRole?: string;
|
|
1718
|
+
semanticTopButtonControlsTargetName?: string;
|
|
1719
|
+
semanticTopButtonControlsTargetSelector?: string;
|
|
1720
|
+
semanticTopButtonFormAction?: string;
|
|
1721
|
+
semanticTopButtonFormMethod?: string;
|
|
1722
|
+
semanticTopButtonFormTarget?: string;
|
|
1723
|
+
semanticTopButtonFormEncType?: string;
|
|
1724
|
+
semanticTopButtonFormNoValidate?: boolean;
|
|
1725
|
+
semanticTopButtonFormId?: string;
|
|
1726
|
+
semanticTopButtonSelector?: string;
|
|
1727
|
+
semanticTopImagePath?: string;
|
|
1728
|
+
semanticTopImageName?: string;
|
|
1729
|
+
semanticTopImageUrl?: string;
|
|
1730
|
+
semanticTopImageWidth?: number;
|
|
1731
|
+
semanticTopImageHeight?: number;
|
|
1732
|
+
semanticTopImageLoading?: string;
|
|
1733
|
+
semanticTopImageDecoding?: string;
|
|
1734
|
+
semanticTopImageSrcset?: string;
|
|
1735
|
+
semanticTopImageSizes?: string;
|
|
1736
|
+
semanticTopImageSelector?: string;
|
|
1737
|
+
semanticTopTableRole?: string;
|
|
1738
|
+
semanticTopTablePath?: string;
|
|
1739
|
+
semanticTopTableName?: string;
|
|
1740
|
+
semanticTopTableRowCount?: number;
|
|
1741
|
+
semanticTopTableColumnCount?: number;
|
|
1742
|
+
semanticTopTableCellCount?: number;
|
|
1743
|
+
semanticTopTableDeclaredRowCount?: number;
|
|
1744
|
+
semanticTopTableDeclaredColumnCount?: number;
|
|
1745
|
+
semanticTopTableHeaders?: string[];
|
|
1746
|
+
semanticTopTableHeaderRefs?: Array<{
|
|
1747
|
+
path?: string;
|
|
1748
|
+
text: string;
|
|
1749
|
+
role?: string;
|
|
1750
|
+
rowIndex?: number;
|
|
1751
|
+
columnIndex?: number;
|
|
1752
|
+
sort?: string;
|
|
1753
|
+
selector?: string;
|
|
1754
|
+
}>;
|
|
1755
|
+
semanticTopTableOwnedCount?: number;
|
|
1756
|
+
semanticTopTableOwnedRefs?: Array<{
|
|
1757
|
+
target: string;
|
|
1758
|
+
role?: string;
|
|
1759
|
+
name?: string;
|
|
1760
|
+
selector?: string;
|
|
1761
|
+
}>;
|
|
1762
|
+
semanticTopTableSampleCells?: string[];
|
|
1763
|
+
semanticTopTableSampleCellRefs?: Array<{
|
|
1764
|
+
path?: string;
|
|
1765
|
+
text: string;
|
|
1766
|
+
rowIndex?: number;
|
|
1767
|
+
columnIndex?: number;
|
|
1768
|
+
rowSpan?: number;
|
|
1769
|
+
columnSpan?: number;
|
|
1770
|
+
headers?: string[];
|
|
1771
|
+
rowHeaders?: string[];
|
|
1772
|
+
columnHeaders?: string[];
|
|
1773
|
+
selected?: boolean;
|
|
1774
|
+
current?: SemanticNodeState["current"];
|
|
1775
|
+
selector?: string;
|
|
1776
|
+
ownedTarget?: string;
|
|
1777
|
+
}>;
|
|
1778
|
+
semanticTopTableFirstHeader?: string;
|
|
1779
|
+
semanticTopTableFirstHeaderPath?: string;
|
|
1780
|
+
semanticTopTableFirstHeaderRole?: string;
|
|
1781
|
+
semanticTopTableFirstHeaderRowIndex?: number;
|
|
1782
|
+
semanticTopTableFirstHeaderColumnIndex?: number;
|
|
1783
|
+
semanticTopTableFirstHeaderSort?: string;
|
|
1784
|
+
semanticTopTableFirstHeaderSelector?: string;
|
|
1785
|
+
semanticTopTableSecondHeader?: string;
|
|
1786
|
+
semanticTopTableSecondHeaderPath?: string;
|
|
1787
|
+
semanticTopTableSecondHeaderRole?: string;
|
|
1788
|
+
semanticTopTableSecondHeaderRowIndex?: number;
|
|
1789
|
+
semanticTopTableSecondHeaderColumnIndex?: number;
|
|
1790
|
+
semanticTopTableSecondHeaderSort?: string;
|
|
1791
|
+
semanticTopTableSecondHeaderSelector?: string;
|
|
1792
|
+
semanticTopTableFirstOwnedTarget?: string;
|
|
1793
|
+
semanticTopTableFirstOwnedRole?: string;
|
|
1794
|
+
semanticTopTableFirstOwnedName?: string;
|
|
1795
|
+
semanticTopTableFirstOwnedSelector?: string;
|
|
1796
|
+
semanticTopTableFirstSampleCellPath?: string;
|
|
1797
|
+
semanticTopTableFirstSampleCellText?: string;
|
|
1798
|
+
semanticTopTableFirstSampleCellRowIndex?: number;
|
|
1799
|
+
semanticTopTableFirstSampleCellColumnIndex?: number;
|
|
1800
|
+
semanticTopTableFirstSampleCellRowSpan?: number;
|
|
1801
|
+
semanticTopTableFirstSampleCellColumnSpan?: number;
|
|
1802
|
+
semanticTopTableFirstSampleCellHeaders?: string[];
|
|
1803
|
+
semanticTopTableFirstSampleCellRowHeaders?: string[];
|
|
1804
|
+
semanticTopTableFirstSampleCellColumnHeaders?: string[];
|
|
1805
|
+
semanticTopTableFirstSampleCellSelected?: boolean;
|
|
1806
|
+
semanticTopTableFirstSampleCellCurrent?: SemanticNodeState["current"];
|
|
1807
|
+
semanticTopTableFirstSampleCellSelector?: string;
|
|
1808
|
+
semanticTopTableFirstSampleCellOwnedTarget?: string;
|
|
1809
|
+
semanticTopTableSecondSampleCellPath?: string;
|
|
1810
|
+
semanticTopTableSecondSampleCellText?: string;
|
|
1811
|
+
semanticTopTableSecondSampleCellRowIndex?: number;
|
|
1812
|
+
semanticTopTableSecondSampleCellColumnIndex?: number;
|
|
1813
|
+
semanticTopTableSecondSampleCellRowSpan?: number;
|
|
1814
|
+
semanticTopTableSecondSampleCellColumnSpan?: number;
|
|
1815
|
+
semanticTopTableSecondSampleCellHeaders?: string[];
|
|
1816
|
+
semanticTopTableSecondSampleCellRowHeaders?: string[];
|
|
1817
|
+
semanticTopTableSecondSampleCellColumnHeaders?: string[];
|
|
1818
|
+
semanticTopTableSecondSampleCellSelected?: boolean;
|
|
1819
|
+
semanticTopTableSecondSampleCellCurrent?: SemanticNodeState["current"];
|
|
1820
|
+
semanticTopTableSecondSampleCellSelector?: string;
|
|
1821
|
+
semanticTopTableSecondSampleCellOwnedTarget?: string;
|
|
1822
|
+
semanticTopTableFirstOwnedSampleCellPath?: string;
|
|
1823
|
+
semanticTopTableFirstOwnedSampleCellText?: string;
|
|
1824
|
+
semanticTopTableFirstOwnedSampleCellRowIndex?: number;
|
|
1825
|
+
semanticTopTableFirstOwnedSampleCellColumnIndex?: number;
|
|
1826
|
+
semanticTopTableFirstOwnedSampleCellRowSpan?: number;
|
|
1827
|
+
semanticTopTableFirstOwnedSampleCellColumnSpan?: number;
|
|
1828
|
+
semanticTopTableFirstOwnedSampleCellHeaders?: string[];
|
|
1829
|
+
semanticTopTableFirstOwnedSampleCellRowHeaders?: string[];
|
|
1830
|
+
semanticTopTableFirstOwnedSampleCellColumnHeaders?: string[];
|
|
1831
|
+
semanticTopTableFirstOwnedSampleCellSelected?: boolean;
|
|
1832
|
+
semanticTopTableFirstOwnedSampleCellCurrent?: SemanticNodeState["current"];
|
|
1833
|
+
semanticTopTableFirstOwnedSampleCellSelector?: string;
|
|
1834
|
+
semanticTopTableFirstOwnedSampleCellOwnedTarget?: string;
|
|
1835
|
+
semanticTopTableSecondOwnedSampleCellPath?: string;
|
|
1836
|
+
semanticTopTableSecondOwnedSampleCellText?: string;
|
|
1837
|
+
semanticTopTableSecondOwnedSampleCellRowIndex?: number;
|
|
1838
|
+
semanticTopTableSecondOwnedSampleCellColumnIndex?: number;
|
|
1839
|
+
semanticTopTableSecondOwnedSampleCellRowSpan?: number;
|
|
1840
|
+
semanticTopTableSecondOwnedSampleCellColumnSpan?: number;
|
|
1841
|
+
semanticTopTableSecondOwnedSampleCellHeaders?: string[];
|
|
1842
|
+
semanticTopTableSecondOwnedSampleCellRowHeaders?: string[];
|
|
1843
|
+
semanticTopTableSecondOwnedSampleCellColumnHeaders?: string[];
|
|
1844
|
+
semanticTopTableSecondOwnedSampleCellSelected?: boolean;
|
|
1845
|
+
semanticTopTableSecondOwnedSampleCellCurrent?: SemanticNodeState["current"];
|
|
1846
|
+
semanticTopTableSecondOwnedSampleCellSelector?: string;
|
|
1847
|
+
semanticTopTableSecondOwnedSampleCellOwnedTarget?: string;
|
|
1848
|
+
semanticTopSelectedTableCellPath?: string;
|
|
1849
|
+
semanticTopSelectedTableCellText?: string;
|
|
1850
|
+
semanticTopSelectedTableCellRowIndex?: number;
|
|
1851
|
+
semanticTopSelectedTableCellColumnIndex?: number;
|
|
1852
|
+
semanticTopSelectedTableCellRowSpan?: number;
|
|
1853
|
+
semanticTopSelectedTableCellColumnSpan?: number;
|
|
1854
|
+
semanticTopSelectedTableCellHeaders?: string[];
|
|
1855
|
+
semanticTopSelectedTableCellRowHeaders?: string[];
|
|
1856
|
+
semanticTopSelectedTableCellColumnHeaders?: string[];
|
|
1857
|
+
semanticTopSelectedTableCellSelected?: boolean;
|
|
1858
|
+
semanticTopSelectedTableCellCurrent?: SemanticNodeState["current"];
|
|
1859
|
+
semanticTopSelectedTableCellSelector?: string;
|
|
1860
|
+
semanticTopSelectedTableCellOwnedTarget?: string;
|
|
1861
|
+
semanticTopTableSelector?: string;
|
|
1862
|
+
semanticTopListRole?: string;
|
|
1863
|
+
semanticTopListPath?: string;
|
|
1864
|
+
semanticTopListName?: string;
|
|
1865
|
+
semanticTopListItemCount?: number;
|
|
1866
|
+
semanticTopListItems?: string[];
|
|
1867
|
+
semanticTopListItemRefs?: Array<{
|
|
1868
|
+
text: string;
|
|
1869
|
+
role?: string;
|
|
1870
|
+
level?: number;
|
|
1871
|
+
posInSet?: number;
|
|
1872
|
+
setSize?: number;
|
|
1873
|
+
selected?: boolean;
|
|
1874
|
+
current?: SemanticNodeState["current"];
|
|
1875
|
+
expanded?: boolean;
|
|
1876
|
+
selector?: string;
|
|
1877
|
+
}>;
|
|
1878
|
+
semanticTopListFirstItemText?: string;
|
|
1879
|
+
semanticTopListFirstItemRole?: string;
|
|
1880
|
+
semanticTopListFirstItemLevel?: number;
|
|
1881
|
+
semanticTopListFirstItemPosInSet?: number;
|
|
1882
|
+
semanticTopListFirstItemSetSize?: number;
|
|
1883
|
+
semanticTopListFirstItemSelected?: boolean;
|
|
1884
|
+
semanticTopListFirstItemCurrent?: SemanticNodeState["current"];
|
|
1885
|
+
semanticTopListFirstItemExpanded?: boolean;
|
|
1886
|
+
semanticTopListFirstItemSelector?: string;
|
|
1887
|
+
semanticTopListSecondItemText?: string;
|
|
1888
|
+
semanticTopListSecondItemRole?: string;
|
|
1889
|
+
semanticTopListSecondItemLevel?: number;
|
|
1890
|
+
semanticTopListSecondItemPosInSet?: number;
|
|
1891
|
+
semanticTopListSecondItemSetSize?: number;
|
|
1892
|
+
semanticTopListSecondItemSelected?: boolean;
|
|
1893
|
+
semanticTopListSecondItemCurrent?: SemanticNodeState["current"];
|
|
1894
|
+
semanticTopListSecondItemExpanded?: boolean;
|
|
1895
|
+
semanticTopListSecondItemSelector?: string;
|
|
1896
|
+
semanticTopSelectedListItemText?: string;
|
|
1897
|
+
semanticTopSelectedListItemRole?: string;
|
|
1898
|
+
semanticTopSelectedListItemLevel?: number;
|
|
1899
|
+
semanticTopSelectedListItemPosInSet?: number;
|
|
1900
|
+
semanticTopSelectedListItemSetSize?: number;
|
|
1901
|
+
semanticTopSelectedListItemSelected?: boolean;
|
|
1902
|
+
semanticTopSelectedListItemCurrent?: SemanticNodeState["current"];
|
|
1903
|
+
semanticTopSelectedListItemExpanded?: boolean;
|
|
1904
|
+
semanticTopSelectedListItemSelector?: string;
|
|
1905
|
+
semanticTopListSelector?: string;
|
|
1906
|
+
semanticTopFieldRole?: string;
|
|
1907
|
+
semanticTopFieldPath?: string;
|
|
1908
|
+
semanticTopFieldName?: string;
|
|
1909
|
+
semanticTopFieldDescription?: string;
|
|
1910
|
+
semanticTopFieldValue?: string;
|
|
1911
|
+
semanticTopFieldHtmlName?: string;
|
|
1912
|
+
semanticTopFieldHtmlType?: string;
|
|
1913
|
+
semanticTopFieldPlaceholder?: string;
|
|
1914
|
+
semanticTopFieldAriaPlaceholder?: string;
|
|
1915
|
+
semanticTopFieldAutocomplete?: string;
|
|
1916
|
+
semanticTopFieldAriaAutocomplete?: string;
|
|
1917
|
+
semanticTopFieldInputMode?: string;
|
|
1918
|
+
semanticTopFieldPattern?: string;
|
|
1919
|
+
semanticTopFieldMin?: string;
|
|
1920
|
+
semanticTopFieldMax?: string;
|
|
1921
|
+
semanticTopFieldStep?: string;
|
|
1922
|
+
semanticTopFieldMinLength?: number;
|
|
1923
|
+
semanticTopFieldMaxLength?: number;
|
|
1924
|
+
semanticTopFieldLabelledBy?: string;
|
|
1925
|
+
semanticTopFieldLabelledByText?: string;
|
|
1926
|
+
semanticTopFieldLabelledBySelector?: string;
|
|
1927
|
+
semanticTopFieldDescribedBy?: string;
|
|
1928
|
+
semanticTopFieldDescribedByText?: string;
|
|
1929
|
+
semanticTopFieldDescribedBySelector?: string;
|
|
1930
|
+
semanticTopFieldDetails?: string;
|
|
1931
|
+
semanticTopFieldDetailsText?: string;
|
|
1932
|
+
semanticTopFieldDetailsSelector?: string;
|
|
1933
|
+
semanticTopFieldErrorMessage?: string;
|
|
1934
|
+
semanticTopFieldErrorMessageText?: string;
|
|
1935
|
+
semanticTopFieldErrorMessageSelector?: string;
|
|
1936
|
+
semanticTopFieldState?: string;
|
|
1937
|
+
semanticTopFieldDisabled?: boolean;
|
|
1938
|
+
semanticTopFieldRequired?: boolean;
|
|
1939
|
+
semanticTopFieldReadonly?: boolean;
|
|
1940
|
+
semanticTopFieldInvalid?: boolean | string;
|
|
1941
|
+
semanticTopFieldChecked?: SemanticNodeState["checked"];
|
|
1942
|
+
semanticTopFieldExpanded?: boolean;
|
|
1943
|
+
semanticTopFieldHaspopup?: SemanticNodeState["haspopup"];
|
|
1944
|
+
semanticTopFieldControls?: string;
|
|
1945
|
+
semanticTopFieldControlsTargetRole?: string;
|
|
1946
|
+
semanticTopFieldControlsTargetName?: string;
|
|
1947
|
+
semanticTopFieldControlsTargetSelector?: string;
|
|
1948
|
+
semanticTopFieldActiveDescendantTarget?: string;
|
|
1949
|
+
semanticTopFieldActiveDescendantTargetRole?: string;
|
|
1950
|
+
semanticTopFieldActiveDescendantTargetName?: string;
|
|
1951
|
+
semanticTopFieldActiveDescendantTargetSelector?: string;
|
|
1952
|
+
semanticTopFieldValueMin?: number;
|
|
1953
|
+
semanticTopFieldValueMax?: number;
|
|
1954
|
+
semanticTopFieldValueNow?: number;
|
|
1955
|
+
semanticTopFieldValueText?: string;
|
|
1956
|
+
semanticTopFieldSelector?: string;
|
|
1957
|
+
semanticTopDescriptionRole?: string;
|
|
1958
|
+
semanticTopDescriptionPath?: string;
|
|
1959
|
+
semanticTopDescriptionName?: string;
|
|
1960
|
+
semanticTopDescriptionText?: string;
|
|
1961
|
+
semanticTopDescriptionSelector?: string;
|
|
1962
|
+
semanticTopValueRole?: string;
|
|
1963
|
+
semanticTopValuePath?: string;
|
|
1964
|
+
semanticTopValueName?: string;
|
|
1965
|
+
semanticTopValue?: string;
|
|
1966
|
+
semanticTopValueSelector?: string;
|
|
1967
|
+
semanticTopRelationRole?: string;
|
|
1968
|
+
semanticTopRelationPath?: string;
|
|
1969
|
+
semanticTopRelationName?: string;
|
|
1970
|
+
semanticTopRelation?: string;
|
|
1971
|
+
semanticTopRelationTarget?: string;
|
|
1972
|
+
semanticTopRelationTargetRole?: string;
|
|
1973
|
+
semanticTopRelationTargetName?: string;
|
|
1974
|
+
semanticTopRelationTargetSelector?: string;
|
|
1975
|
+
semanticTopRelationSelector?: string;
|
|
1976
|
+
semanticTopOwnsRelationRole?: string;
|
|
1977
|
+
semanticTopOwnsRelationPath?: string;
|
|
1978
|
+
semanticTopOwnsRelationName?: string;
|
|
1979
|
+
semanticTopOwnsRelationTarget?: string;
|
|
1980
|
+
semanticTopOwnsRelationTargetRole?: string;
|
|
1981
|
+
semanticTopOwnsRelationTargetName?: string;
|
|
1982
|
+
semanticTopOwnsRelationTargetSelector?: string;
|
|
1983
|
+
semanticTopOwnsRelationSelector?: string;
|
|
1984
|
+
semanticTopFlowToRole?: string;
|
|
1985
|
+
semanticTopFlowToPath?: string;
|
|
1986
|
+
semanticTopFlowToName?: string;
|
|
1987
|
+
semanticTopFlowToTarget?: string;
|
|
1988
|
+
semanticTopFlowToTargetRole?: string;
|
|
1989
|
+
semanticTopFlowToTargetName?: string;
|
|
1990
|
+
semanticTopFlowToTargetSelector?: string;
|
|
1991
|
+
semanticTopFlowToSelector?: string;
|
|
1992
|
+
semanticTopActiveDescendantRelationRole?: string;
|
|
1993
|
+
semanticTopActiveDescendantRelationPath?: string;
|
|
1994
|
+
semanticTopActiveDescendantRelationName?: string;
|
|
1995
|
+
semanticTopActiveDescendantRelationTarget?: string;
|
|
1996
|
+
semanticTopActiveDescendantRelationTargetRole?: string;
|
|
1997
|
+
semanticTopActiveDescendantRelationTargetName?: string;
|
|
1998
|
+
semanticTopActiveDescendantRelationTargetSelector?: string;
|
|
1999
|
+
semanticTopActiveDescendantRelationSelector?: string;
|
|
2000
|
+
semanticTopDetailsRelationRole?: string;
|
|
2001
|
+
semanticTopDetailsRelationPath?: string;
|
|
2002
|
+
semanticTopDetailsRelationName?: string;
|
|
2003
|
+
semanticTopDetailsRelationTarget?: string;
|
|
2004
|
+
semanticTopDetailsRelationTargetRole?: string;
|
|
2005
|
+
semanticTopDetailsRelationTargetName?: string;
|
|
2006
|
+
semanticTopDetailsRelationTargetSelector?: string;
|
|
2007
|
+
semanticTopDetailsRelationSelector?: string;
|
|
2008
|
+
semanticTopErrorMessageRelationRole?: string;
|
|
2009
|
+
semanticTopErrorMessageRelationPath?: string;
|
|
2010
|
+
semanticTopErrorMessageRelationName?: string;
|
|
2011
|
+
semanticTopErrorMessageRelationTarget?: string;
|
|
2012
|
+
semanticTopErrorMessageRelationTargetRole?: string;
|
|
2013
|
+
semanticTopErrorMessageRelationTargetName?: string;
|
|
2014
|
+
semanticTopErrorMessageRelationTargetSelector?: string;
|
|
2015
|
+
semanticTopErrorMessageRelationSelector?: string;
|
|
2016
|
+
semanticTopDescribedByRelationRole?: string;
|
|
2017
|
+
semanticTopDescribedByRelationPath?: string;
|
|
2018
|
+
semanticTopDescribedByRelationName?: string;
|
|
2019
|
+
semanticTopDescribedByRelationTarget?: string;
|
|
2020
|
+
semanticTopDescribedByRelationTargetRole?: string;
|
|
2021
|
+
semanticTopDescribedByRelationTargetName?: string;
|
|
2022
|
+
semanticTopDescribedByRelationTargetSelector?: string;
|
|
2023
|
+
semanticTopDescribedByRelationSelector?: string;
|
|
2024
|
+
semanticTopLabelledByRelationRole?: string;
|
|
2025
|
+
semanticTopLabelledByRelationPath?: string;
|
|
2026
|
+
semanticTopLabelledByRelationName?: string;
|
|
2027
|
+
semanticTopLabelledByRelationTarget?: string;
|
|
2028
|
+
semanticTopLabelledByRelationTargetRole?: string;
|
|
2029
|
+
semanticTopLabelledByRelationTargetName?: string;
|
|
2030
|
+
semanticTopLabelledByRelationTargetSelector?: string;
|
|
2031
|
+
semanticTopLabelledByRelationSelector?: string;
|
|
2032
|
+
semanticTopChoiceRole?: string;
|
|
2033
|
+
semanticTopChoicePath?: string;
|
|
2034
|
+
semanticTopChoiceName?: string;
|
|
2035
|
+
semanticTopChoiceState?: string;
|
|
2036
|
+
semanticTopChoiceSelected?: boolean;
|
|
2037
|
+
semanticTopChoiceCurrent?: SemanticNodeState["current"];
|
|
2038
|
+
semanticTopChoiceLevel?: number;
|
|
2039
|
+
semanticTopChoicePosInSet?: number;
|
|
2040
|
+
semanticTopChoiceSetSize?: number;
|
|
2041
|
+
semanticTopChoiceSelector?: string;
|
|
2042
|
+
semanticTopSelectedChoiceRole?: string;
|
|
2043
|
+
semanticTopSelectedChoicePath?: string;
|
|
2044
|
+
semanticTopSelectedChoiceName?: string;
|
|
2045
|
+
semanticTopSelectedChoiceState?: string;
|
|
2046
|
+
semanticTopSelectedChoiceSelected?: boolean;
|
|
2047
|
+
semanticTopSelectedChoiceCurrent?: SemanticNodeState["current"];
|
|
2048
|
+
semanticTopSelectedChoiceLevel?: number;
|
|
2049
|
+
semanticTopSelectedChoicePosInSet?: number;
|
|
2050
|
+
semanticTopSelectedChoiceSetSize?: number;
|
|
2051
|
+
semanticTopSelectedChoiceControls?: string;
|
|
2052
|
+
semanticTopSelectedChoiceControlsTargetRole?: string;
|
|
2053
|
+
semanticTopSelectedChoiceControlsTargetName?: string;
|
|
2054
|
+
semanticTopSelectedChoiceControlsTargetSelector?: string;
|
|
2055
|
+
semanticTopSelectedChoiceSelector?: string;
|
|
2056
|
+
semanticTopStateRole?: string;
|
|
2057
|
+
semanticTopStatePath?: string;
|
|
2058
|
+
semanticTopStateName?: string;
|
|
2059
|
+
semanticTopState?: string;
|
|
2060
|
+
semanticTopStateHidden?: boolean;
|
|
2061
|
+
semanticTopStateDisabled?: boolean;
|
|
2062
|
+
semanticTopStateBusy?: boolean;
|
|
2063
|
+
semanticTopStateMultiselectable?: boolean;
|
|
2064
|
+
semanticTopStateSort?: string;
|
|
2065
|
+
semanticTopStateGrabbed?: boolean;
|
|
2066
|
+
semanticTopStateDropEffect?: string;
|
|
2067
|
+
semanticTopStateChecked?: boolean | "mixed";
|
|
2068
|
+
semanticTopStateSelected?: boolean;
|
|
2069
|
+
semanticTopStateExpanded?: boolean;
|
|
2070
|
+
semanticTopStatePressed?: boolean | "mixed";
|
|
2071
|
+
semanticTopStateFocused?: boolean;
|
|
2072
|
+
semanticTopStateRequired?: boolean;
|
|
2073
|
+
semanticTopStateInvalid?: boolean | string;
|
|
2074
|
+
semanticTopStateReadonly?: boolean;
|
|
2075
|
+
semanticTopStateCurrent?: boolean | string;
|
|
2076
|
+
semanticTopStateHaspopup?: boolean | string;
|
|
2077
|
+
semanticTopStateControls?: string;
|
|
2078
|
+
semanticTopStateControlsTargetRole?: string;
|
|
2079
|
+
semanticTopStateControlsTargetName?: string;
|
|
2080
|
+
semanticTopStateControlsTargetSelector?: string;
|
|
2081
|
+
semanticTopStateLive?: string;
|
|
2082
|
+
semanticTopStateModal?: boolean;
|
|
2083
|
+
semanticTopStateOrientation?: string;
|
|
2084
|
+
semanticTopStateValueMin?: number;
|
|
2085
|
+
semanticTopStateValueMax?: number;
|
|
2086
|
+
semanticTopStateValueNow?: number;
|
|
2087
|
+
semanticTopStateValueText?: string;
|
|
2088
|
+
semanticTopStateSelector?: string;
|
|
2089
|
+
semanticTopModalStateRole?: string;
|
|
2090
|
+
semanticTopModalStatePath?: string;
|
|
2091
|
+
semanticTopModalStateName?: string;
|
|
2092
|
+
semanticTopModalState?: string;
|
|
2093
|
+
semanticTopModalStateSelector?: string;
|
|
2094
|
+
semanticTopLiveStateRole?: string;
|
|
2095
|
+
semanticTopLiveStatePath?: string;
|
|
2096
|
+
semanticTopLiveStateName?: string;
|
|
2097
|
+
semanticTopLiveState?: string;
|
|
2098
|
+
semanticTopLiveStateLive?: string;
|
|
2099
|
+
semanticTopLiveStateSelector?: string;
|
|
2100
|
+
semanticTopUnavailablePath?: string;
|
|
2101
|
+
semanticTopUnavailableTag?: string;
|
|
2102
|
+
semanticTopUnavailableRole?: string;
|
|
2103
|
+
semanticTopUnavailableName?: string;
|
|
2104
|
+
semanticTopUnavailableReason?: string;
|
|
2105
|
+
semanticTopUnavailableSelector?: string;
|
|
2106
|
+
signalCount?: number;
|
|
2107
|
+
signalWarningCount?: number;
|
|
2108
|
+
signalErrorCount?: number;
|
|
2109
|
+
signals?: AgentSignal[];
|
|
2110
|
+
qualityGateCount?: number;
|
|
2111
|
+
qualityGateFailCount?: number;
|
|
2112
|
+
qualityGates?: AgentQualityGate[];
|
|
2113
|
+
topSignalKind?: AgentSignalKind;
|
|
2114
|
+
topSignalSeverity?: AgentSignalSeverity;
|
|
2115
|
+
topSignalMessage?: string;
|
|
2116
|
+
topQualityGateKind?: AgentQualityGateKind;
|
|
2117
|
+
topQualityGatePass?: boolean;
|
|
2118
|
+
topQualityGateSeverity?: AgentSignalSeverity;
|
|
2119
|
+
topQualityGateMessage?: string;
|
|
2120
|
+
topQualityGatePath?: string;
|
|
2121
|
+
topQualityGateScore?: number;
|
|
2122
|
+
problemSignalKind?: AgentSignalKind;
|
|
2123
|
+
problemSignalSeverity?: AgentSignalSeverity;
|
|
2124
|
+
problemSignalMessage?: string;
|
|
2125
|
+
failingQualityGateKind?: AgentQualityGateKind;
|
|
2126
|
+
failingQualityGateSeverity?: AgentSignalSeverity;
|
|
2127
|
+
failingQualityGateMessage?: string;
|
|
2128
|
+
failingQualityGatePath?: string;
|
|
2129
|
+
failingQualityGateScore?: number;
|
|
2130
|
+
canContinue: boolean;
|
|
2131
|
+
canUseFetchedHtml: boolean;
|
|
2132
|
+
needsBrowserHtml: boolean;
|
|
2133
|
+
needsBrowserInteraction: boolean;
|
|
2134
|
+
staticReadiness?: AgentStaticReadiness;
|
|
2135
|
+
staticReadinessReasonCode?: AgentStaticReadinessReasonCode;
|
|
2136
|
+
staticReadinessReason?: string;
|
|
2137
|
+
staticReadinessReadFrom?: string;
|
|
2138
|
+
staticReadinessReadTargetKind?: AgentReadTarget["kind"];
|
|
2139
|
+
staticReadinessReadTargetCount?: number;
|
|
2140
|
+
staticReadinessReadTargetScore?: number;
|
|
2141
|
+
staticReadinessReadTargetPrimary?: boolean;
|
|
2142
|
+
staticReadinessReadTargetReason?: string;
|
|
2143
|
+
browserHtmlReason?: string;
|
|
2144
|
+
browserHtmlReasonCode?: AgentBrowserHtmlReasonCode;
|
|
2145
|
+
browserHtmlActionName?: string;
|
|
2146
|
+
browserHtmlOperation?: AgentExecutionPlan["operation"];
|
|
2147
|
+
browserHtmlUrl?: string;
|
|
2148
|
+
browserHtmlFile?: AgentBrowserHtmlCapture["htmlFile"];
|
|
2149
|
+
browserHtmlCaptureScript?: AgentBrowserHtmlCapture["captureScript"];
|
|
2150
|
+
browserHtmlCommand?: string;
|
|
2151
|
+
browserHtmlCommandArgs?: string[];
|
|
2152
|
+
browserHtmlAfterInteractionCommand?: string;
|
|
2153
|
+
browserHtmlAfterInteractionCommandArgs?: string[];
|
|
2154
|
+
responseStatus?: number;
|
|
2155
|
+
responseOk?: boolean;
|
|
2156
|
+
responseContentType?: string;
|
|
2157
|
+
finalUrlChanged?: boolean;
|
|
2158
|
+
confidence?: "low" | "medium" | "high";
|
|
2159
|
+
usabilityScore?: number;
|
|
2160
|
+
readability?: "low" | "medium" | "high";
|
|
2161
|
+
readabilityScore?: number;
|
|
2162
|
+
readabilityReasons?: string[];
|
|
2163
|
+
verificationStatus?: "not-requested" | "matched" | "partial" | "missing";
|
|
2164
|
+
verificationRequestedCount?: number;
|
|
2165
|
+
verificationFoundCount?: number;
|
|
2166
|
+
verificationMissingCount?: number;
|
|
2167
|
+
verificationFoundQueries?: string[];
|
|
2168
|
+
verificationMissingQueries?: string[];
|
|
2169
|
+
topVerificationFoundQuery?: string;
|
|
2170
|
+
topVerificationMissingQuery?: string;
|
|
2171
|
+
resultCount?: number;
|
|
2172
|
+
resultChoiceCount?: number;
|
|
2173
|
+
resultChoices?: AgentResultChoice[];
|
|
2174
|
+
topResultChoicePath?: string;
|
|
2175
|
+
topResultChoiceTitle?: string;
|
|
2176
|
+
topResultChoiceUrl?: string;
|
|
2177
|
+
topResultChoiceHost?: string;
|
|
2178
|
+
topResultChoiceUrlPath?: string;
|
|
2179
|
+
topResultChoiceUrlQuery?: string;
|
|
2180
|
+
topResultChoiceSnippet?: string;
|
|
2181
|
+
topResultChoiceCommand?: string;
|
|
2182
|
+
topResultChoiceCommandArgs?: string[];
|
|
2183
|
+
topResultChoiceRank?: number;
|
|
2184
|
+
topResultChoiceOpenResult?: number | "best";
|
|
2185
|
+
topResultChoiceRecommended?: boolean;
|
|
2186
|
+
topResultChoicePrimary?: boolean;
|
|
2187
|
+
topResultChoiceSourceType?: string;
|
|
2188
|
+
topResultChoiceSourceScore?: number;
|
|
2189
|
+
topResultChoiceSourceHints?: string[];
|
|
2190
|
+
topResultChoiceDateText?: string;
|
|
2191
|
+
topResultChoiceDateIso?: string;
|
|
2192
|
+
topResultChoiceDateUnixMs?: number;
|
|
2193
|
+
topResultChoiceDatePrecision?: "day" | "month" | "year";
|
|
2194
|
+
topResultChoiceDateSource?: "title" | "snippet";
|
|
2195
|
+
topResultChoiceRelevance?: "low" | "medium" | "high";
|
|
2196
|
+
topResultChoiceMatchedTerm?: string;
|
|
2197
|
+
topResultChoiceFindMatch?: string;
|
|
2198
|
+
topResultChoiceLikelyOfficial?: boolean;
|
|
2199
|
+
topResultChoiceSitelinkCount?: number;
|
|
2200
|
+
topResultChoiceFirstSitelinkTitle?: string;
|
|
2201
|
+
topResultChoiceFirstSitelinkUrl?: string;
|
|
2202
|
+
topResultChoiceFirstSitelinkUrlPath?: string;
|
|
2203
|
+
topResultChoiceFirstSitelinkUrlQuery?: string;
|
|
2204
|
+
topResultChoiceFirstSitelinkSelector?: string;
|
|
2205
|
+
topResultChoiceFirstSitelinkCommand?: string;
|
|
2206
|
+
topResultChoiceFirstSitelinkCommandArgs?: string[];
|
|
2207
|
+
topResultChoiceReason?: string;
|
|
2208
|
+
secondResultChoicePath?: string;
|
|
2209
|
+
secondResultChoiceTitle?: string;
|
|
2210
|
+
secondResultChoiceUrl?: string;
|
|
2211
|
+
secondResultChoiceHost?: string;
|
|
2212
|
+
secondResultChoiceUrlPath?: string;
|
|
2213
|
+
secondResultChoiceUrlQuery?: string;
|
|
2214
|
+
secondResultChoiceSnippet?: string;
|
|
2215
|
+
secondResultChoiceCommand?: string;
|
|
2216
|
+
secondResultChoiceCommandArgs?: string[];
|
|
2217
|
+
secondResultChoiceRank?: number;
|
|
2218
|
+
secondResultChoiceOpenResult?: number | "best";
|
|
2219
|
+
secondResultChoiceRecommended?: boolean;
|
|
2220
|
+
secondResultChoicePrimary?: boolean;
|
|
2221
|
+
secondResultChoiceSourceType?: string;
|
|
2222
|
+
secondResultChoiceSourceScore?: number;
|
|
2223
|
+
secondResultChoiceSourceHints?: string[];
|
|
2224
|
+
secondResultChoiceDateText?: string;
|
|
2225
|
+
secondResultChoiceDateIso?: string;
|
|
2226
|
+
secondResultChoiceDateUnixMs?: number;
|
|
2227
|
+
secondResultChoiceDatePrecision?: "day" | "month" | "year";
|
|
2228
|
+
secondResultChoiceDateSource?: "title" | "snippet";
|
|
2229
|
+
secondResultChoiceRelevance?: "low" | "medium" | "high";
|
|
2230
|
+
secondResultChoiceMatchedTerm?: string;
|
|
2231
|
+
secondResultChoiceFindMatch?: string;
|
|
2232
|
+
secondResultChoiceLikelyOfficial?: boolean;
|
|
2233
|
+
secondResultChoiceSitelinkCount?: number;
|
|
2234
|
+
secondResultChoiceFirstSitelinkTitle?: string;
|
|
2235
|
+
secondResultChoiceFirstSitelinkUrl?: string;
|
|
2236
|
+
secondResultChoiceFirstSitelinkUrlPath?: string;
|
|
2237
|
+
secondResultChoiceFirstSitelinkUrlQuery?: string;
|
|
2238
|
+
secondResultChoiceFirstSitelinkSelector?: string;
|
|
2239
|
+
secondResultChoiceFirstSitelinkCommand?: string;
|
|
2240
|
+
secondResultChoiceFirstSitelinkCommandArgs?: string[];
|
|
2241
|
+
secondResultChoiceReason?: string;
|
|
2242
|
+
evidenceCount?: number;
|
|
2243
|
+
formCount?: number;
|
|
2244
|
+
formChoiceCount?: number;
|
|
2245
|
+
formChoices?: AgentFormChoice[];
|
|
2246
|
+
topFormChoicePath?: string;
|
|
2247
|
+
topFormChoiceMethod?: string;
|
|
2248
|
+
topFormChoiceActionUrl?: string;
|
|
2249
|
+
topFormChoiceActionUrlPath?: string;
|
|
2250
|
+
topFormChoiceActionUrlQuery?: string;
|
|
2251
|
+
topFormChoiceFormId?: string;
|
|
2252
|
+
topFormChoiceFormName?: string;
|
|
2253
|
+
topFormChoiceFormTarget?: string;
|
|
2254
|
+
topFormChoiceFormEncType?: string;
|
|
2255
|
+
topFormChoiceFormAcceptCharset?: string;
|
|
2256
|
+
topFormChoiceFormNoValidate?: boolean;
|
|
2257
|
+
topFormChoiceSubmitText?: string;
|
|
2258
|
+
topFormChoiceSubmitType?: string;
|
|
2259
|
+
topFormChoiceSubmitName?: string;
|
|
2260
|
+
topFormChoiceSubmitValue?: string;
|
|
2261
|
+
topFormChoiceSubmitDisabled?: boolean;
|
|
2262
|
+
topFormChoiceSubmitSelector?: string;
|
|
2263
|
+
topFormChoiceSubmitFormActionUrl?: string;
|
|
2264
|
+
topFormChoiceSubmitFormActionUrlPath?: string;
|
|
2265
|
+
topFormChoiceSubmitFormActionUrlQuery?: string;
|
|
2266
|
+
topFormChoiceSubmitFormMethod?: string;
|
|
2267
|
+
topFormChoiceSubmitFormTarget?: string;
|
|
2268
|
+
topFormChoiceSubmitFormEncType?: string;
|
|
2269
|
+
topFormChoiceSubmitFormNoValidate?: boolean;
|
|
2270
|
+
topFormChoiceSubmitFormId?: string;
|
|
2271
|
+
topFormChoiceQueryField?: string;
|
|
2272
|
+
topFormChoiceUrlTemplate?: string;
|
|
2273
|
+
topFormChoiceUrlTemplatePath?: string;
|
|
2274
|
+
topFormChoiceUrlTemplateQuery?: string;
|
|
2275
|
+
topFormChoiceCommand?: string;
|
|
2276
|
+
topFormChoiceCommandArgs?: string[];
|
|
2277
|
+
topFormChoiceFieldCount?: number;
|
|
2278
|
+
topFormChoiceHiddenFieldCount?: number;
|
|
2279
|
+
topFormChoiceSelector?: string;
|
|
2280
|
+
topFormChoiceFirstHiddenFieldName?: string;
|
|
2281
|
+
topFormChoiceFirstHiddenFieldValue?: string;
|
|
2282
|
+
topFormChoiceFirstHiddenFieldSelector?: string;
|
|
2283
|
+
topFormChoiceFirstFieldName?: string;
|
|
2284
|
+
topFormChoiceFirstFieldType?: string;
|
|
2285
|
+
topFormChoiceFirstFieldLabel?: string;
|
|
2286
|
+
topFormChoiceFirstFieldPlaceholder?: string;
|
|
2287
|
+
topFormChoiceFirstFieldValue?: string;
|
|
2288
|
+
topFormChoiceFirstFieldOptions?: string[];
|
|
2289
|
+
topFormChoiceFirstFieldSelectedOption?: string;
|
|
2290
|
+
topFormChoiceFirstFieldSelectedValue?: string;
|
|
2291
|
+
topFormChoiceFirstFieldAutocomplete?: string;
|
|
2292
|
+
topFormChoiceFirstFieldInputMode?: string;
|
|
2293
|
+
topFormChoiceFirstFieldPattern?: string;
|
|
2294
|
+
topFormChoiceFirstFieldMin?: string;
|
|
2295
|
+
topFormChoiceFirstFieldMax?: string;
|
|
2296
|
+
topFormChoiceFirstFieldStep?: string;
|
|
2297
|
+
topFormChoiceFirstFieldMinLength?: number;
|
|
2298
|
+
topFormChoiceFirstFieldMaxLength?: number;
|
|
2299
|
+
topFormChoiceFirstFieldRequired?: boolean;
|
|
2300
|
+
topFormChoiceFirstFieldChecked?: boolean;
|
|
2301
|
+
topFormChoiceFirstFieldDisabled?: boolean;
|
|
2302
|
+
topFormChoiceFirstFieldReadonly?: boolean;
|
|
2303
|
+
topFormChoiceFirstFieldInvalid?: SemanticNodeState["invalid"];
|
|
2304
|
+
topFormChoiceFirstFieldSelector?: string;
|
|
2305
|
+
topFormChoiceRequiredFieldName?: string;
|
|
2306
|
+
topFormChoiceRequiredFieldType?: string;
|
|
2307
|
+
topFormChoiceRequiredFieldLabel?: string;
|
|
2308
|
+
topFormChoiceRequiredFieldPlaceholder?: string;
|
|
2309
|
+
topFormChoiceRequiredFieldValue?: string;
|
|
2310
|
+
topFormChoiceRequiredFieldOptions?: string[];
|
|
2311
|
+
topFormChoiceRequiredFieldSelectedOption?: string;
|
|
2312
|
+
topFormChoiceRequiredFieldSelectedValue?: string;
|
|
2313
|
+
topFormChoiceRequiredFieldAutocomplete?: string;
|
|
2314
|
+
topFormChoiceRequiredFieldInputMode?: string;
|
|
2315
|
+
topFormChoiceRequiredFieldPattern?: string;
|
|
2316
|
+
topFormChoiceRequiredFieldMin?: string;
|
|
2317
|
+
topFormChoiceRequiredFieldMax?: string;
|
|
2318
|
+
topFormChoiceRequiredFieldStep?: string;
|
|
2319
|
+
topFormChoiceRequiredFieldMinLength?: number;
|
|
2320
|
+
topFormChoiceRequiredFieldMaxLength?: number;
|
|
2321
|
+
topFormChoiceRequiredFieldRequired?: boolean;
|
|
2322
|
+
topFormChoiceRequiredFieldChecked?: boolean;
|
|
2323
|
+
topFormChoiceRequiredFieldDisabled?: boolean;
|
|
2324
|
+
topFormChoiceRequiredFieldReadonly?: boolean;
|
|
2325
|
+
topFormChoiceRequiredFieldInvalid?: SemanticNodeState["invalid"];
|
|
2326
|
+
topFormChoiceRequiredFieldSelector?: string;
|
|
2327
|
+
topFormChoiceInvalidFieldName?: string;
|
|
2328
|
+
topFormChoiceInvalidFieldType?: string;
|
|
2329
|
+
topFormChoiceInvalidFieldLabel?: string;
|
|
2330
|
+
topFormChoiceInvalidFieldInvalid?: SemanticNodeState["invalid"];
|
|
2331
|
+
topFormChoiceInvalidFieldSelector?: string;
|
|
2332
|
+
secondFormChoicePath?: string;
|
|
2333
|
+
secondFormChoiceMethod?: string;
|
|
2334
|
+
secondFormChoiceActionUrl?: string;
|
|
2335
|
+
secondFormChoiceActionUrlPath?: string;
|
|
2336
|
+
secondFormChoiceActionUrlQuery?: string;
|
|
2337
|
+
secondFormChoiceUrlTemplate?: string;
|
|
2338
|
+
secondFormChoiceUrlTemplatePath?: string;
|
|
2339
|
+
secondFormChoiceUrlTemplateQuery?: string;
|
|
2340
|
+
secondFormChoiceQueryField?: string;
|
|
2341
|
+
secondFormChoiceCommand?: string;
|
|
2342
|
+
secondFormChoiceCommandArgs?: string[];
|
|
2343
|
+
secondFormChoiceFieldCount?: number;
|
|
2344
|
+
secondFormChoiceHiddenFieldCount?: number;
|
|
2345
|
+
secondFormChoiceSelector?: string;
|
|
2346
|
+
secondFormChoiceSubmitText?: string;
|
|
2347
|
+
secondFormChoiceSubmitType?: string;
|
|
2348
|
+
secondFormChoiceSubmitName?: string;
|
|
2349
|
+
secondFormChoiceSubmitValue?: string;
|
|
2350
|
+
secondFormChoiceSubmitDisabled?: boolean;
|
|
2351
|
+
secondFormChoiceSubmitSelector?: string;
|
|
2352
|
+
secondFormChoiceFirstFieldName?: string;
|
|
2353
|
+
secondFormChoiceFirstFieldType?: string;
|
|
2354
|
+
secondFormChoiceFirstFieldLabel?: string;
|
|
2355
|
+
secondFormChoiceFirstFieldPlaceholder?: string;
|
|
2356
|
+
secondFormChoiceFirstFieldRequired?: boolean;
|
|
2357
|
+
secondFormChoiceFirstFieldInvalid?: SemanticNodeState["invalid"];
|
|
2358
|
+
secondFormChoiceFirstFieldSelector?: string;
|
|
2359
|
+
actionTargetCount?: number;
|
|
2360
|
+
actionTargetChoiceCount?: number;
|
|
2361
|
+
actionTargetChoices?: AgentActionTargetChoice[];
|
|
2362
|
+
topActionTargetChoicePath?: string;
|
|
2363
|
+
topActionTargetChoiceKind?: string;
|
|
2364
|
+
topActionTargetChoiceName?: string;
|
|
2365
|
+
topActionTargetChoiceSource?: string;
|
|
2366
|
+
topActionTargetChoiceTargetUrl?: string;
|
|
2367
|
+
topActionTargetChoiceTargetUrlPath?: string;
|
|
2368
|
+
topActionTargetChoiceTargetUrlQuery?: string;
|
|
2369
|
+
topActionTargetChoiceUrlTemplate?: string;
|
|
2370
|
+
topActionTargetChoiceUrlTemplatePath?: string;
|
|
2371
|
+
topActionTargetChoiceUrlTemplateQuery?: string;
|
|
2372
|
+
topActionTargetChoiceQueryInput?: string;
|
|
2373
|
+
topActionTargetChoiceMethod?: string;
|
|
2374
|
+
topActionTargetChoiceEncodingType?: string;
|
|
2375
|
+
topActionTargetChoiceCommand?: string;
|
|
2376
|
+
topActionTargetChoiceCommandArgs?: string[];
|
|
2377
|
+
topActionTargetChoiceDisabled?: boolean;
|
|
2378
|
+
topActionTargetChoicePressed?: SemanticNodeState["pressed"];
|
|
2379
|
+
topActionTargetChoiceExpanded?: boolean;
|
|
2380
|
+
topActionTargetChoiceHaspopup?: SemanticNodeState["haspopup"];
|
|
2381
|
+
topActionTargetChoiceControls?: string;
|
|
2382
|
+
topActionTargetChoiceSelector?: string;
|
|
2383
|
+
secondActionTargetChoicePath?: string;
|
|
2384
|
+
secondActionTargetChoiceKind?: string;
|
|
2385
|
+
secondActionTargetChoiceName?: string;
|
|
2386
|
+
secondActionTargetChoiceSource?: string;
|
|
2387
|
+
secondActionTargetChoiceTargetUrl?: string;
|
|
2388
|
+
secondActionTargetChoiceTargetUrlPath?: string;
|
|
2389
|
+
secondActionTargetChoiceTargetUrlQuery?: string;
|
|
2390
|
+
secondActionTargetChoiceUrlTemplate?: string;
|
|
2391
|
+
secondActionTargetChoiceUrlTemplatePath?: string;
|
|
2392
|
+
secondActionTargetChoiceUrlTemplateQuery?: string;
|
|
2393
|
+
secondActionTargetChoiceQueryInput?: string;
|
|
2394
|
+
secondActionTargetChoiceMethod?: string;
|
|
2395
|
+
secondActionTargetChoiceEncodingType?: string;
|
|
2396
|
+
secondActionTargetChoiceCommand?: string;
|
|
2397
|
+
secondActionTargetChoiceCommandArgs?: string[];
|
|
2398
|
+
secondActionTargetChoiceDisabled?: boolean;
|
|
2399
|
+
secondActionTargetChoicePressed?: SemanticNodeState["pressed"];
|
|
2400
|
+
secondActionTargetChoiceExpanded?: boolean;
|
|
2401
|
+
secondActionTargetChoiceHaspopup?: SemanticNodeState["haspopup"];
|
|
2402
|
+
secondActionTargetChoiceControls?: string;
|
|
2403
|
+
secondActionTargetChoiceSelector?: string;
|
|
2404
|
+
barrierCount?: number;
|
|
2405
|
+
topBarrierKind?: string;
|
|
2406
|
+
topBarrierSeverity?: "info" | "warning" | "error";
|
|
2407
|
+
topBarrierSource?: string;
|
|
2408
|
+
topBarrierPath?: string;
|
|
2409
|
+
topBarrierText?: string;
|
|
2410
|
+
topBarrierSelector?: string;
|
|
2411
|
+
topBarrierDiagnosticCode?: string;
|
|
2412
|
+
secondBarrierKind?: string;
|
|
2413
|
+
secondBarrierSeverity?: "info" | "warning" | "error";
|
|
2414
|
+
secondBarrierSource?: string;
|
|
2415
|
+
secondBarrierPath?: string;
|
|
2416
|
+
secondBarrierText?: string;
|
|
2417
|
+
secondBarrierSelector?: string;
|
|
2418
|
+
secondBarrierDiagnosticCode?: string;
|
|
2419
|
+
dataTableCount?: number;
|
|
2420
|
+
faqCount?: number;
|
|
2421
|
+
codeBlockCount?: number;
|
|
2422
|
+
resourceCount?: number;
|
|
2423
|
+
mediaCount?: number;
|
|
2424
|
+
sectionCount?: number;
|
|
2425
|
+
breadcrumbCount?: number;
|
|
2426
|
+
paginationCount?: number;
|
|
2427
|
+
tocCount?: number;
|
|
2428
|
+
embedCount?: number;
|
|
2429
|
+
transcriptCount?: number;
|
|
2430
|
+
authorLinkCount?: number;
|
|
2431
|
+
provenanceCount?: number;
|
|
2432
|
+
offerCount?: number;
|
|
2433
|
+
datasetCount?: number;
|
|
2434
|
+
identityCount?: number;
|
|
2435
|
+
timelineCount?: number;
|
|
2436
|
+
contactPointCount?: number;
|
|
2437
|
+
topDataTablePath?: string;
|
|
2438
|
+
topDataTableCaption?: string;
|
|
2439
|
+
topDataTableRowCount?: number;
|
|
2440
|
+
topDataTableColumnCount?: number;
|
|
2441
|
+
topDataTableHeaderCount?: number;
|
|
2442
|
+
topDataTableHeaders?: string[];
|
|
2443
|
+
topDataTableFirstHeader?: string;
|
|
2444
|
+
topDataTableFirstRow?: string[];
|
|
2445
|
+
topDataTableFirstCell?: string;
|
|
2446
|
+
topDataTableSecondRow?: string[];
|
|
2447
|
+
topDataTableSecondCell?: string;
|
|
2448
|
+
topDataTableSelector?: string;
|
|
2449
|
+
secondDataTablePath?: string;
|
|
2450
|
+
secondDataTableCaption?: string;
|
|
2451
|
+
secondDataTableRowCount?: number;
|
|
2452
|
+
secondDataTableColumnCount?: number;
|
|
2453
|
+
secondDataTableHeaderCount?: number;
|
|
2454
|
+
secondDataTableHeaders?: string[];
|
|
2455
|
+
secondDataTableFirstHeader?: string;
|
|
2456
|
+
secondDataTableFirstRow?: string[];
|
|
2457
|
+
secondDataTableFirstCell?: string;
|
|
2458
|
+
secondDataTableSecondRow?: string[];
|
|
2459
|
+
secondDataTableSecondCell?: string;
|
|
2460
|
+
secondDataTableSelector?: string;
|
|
2461
|
+
topFaqPath?: string;
|
|
2462
|
+
topFaqQuestion?: string;
|
|
2463
|
+
topFaqAnswer?: string;
|
|
2464
|
+
topFaqSelector?: string;
|
|
2465
|
+
secondFaqPath?: string;
|
|
2466
|
+
secondFaqQuestion?: string;
|
|
2467
|
+
secondFaqAnswer?: string;
|
|
2468
|
+
secondFaqSelector?: string;
|
|
2469
|
+
topCodeBlockPath?: string;
|
|
2470
|
+
topCodeBlockLanguage?: string;
|
|
2471
|
+
topCodeBlockLineCount?: number;
|
|
2472
|
+
topCodeBlockText?: string;
|
|
2473
|
+
topCodeBlockSelector?: string;
|
|
2474
|
+
secondCodeBlockPath?: string;
|
|
2475
|
+
secondCodeBlockLanguage?: string;
|
|
2476
|
+
secondCodeBlockLineCount?: number;
|
|
2477
|
+
secondCodeBlockText?: string;
|
|
2478
|
+
secondCodeBlockSelector?: string;
|
|
2479
|
+
topResourcePath?: string;
|
|
2480
|
+
topResourceKind?: string;
|
|
2481
|
+
topResourceUrl?: string;
|
|
2482
|
+
topResourceUrlPath?: string;
|
|
2483
|
+
topResourceUrlQuery?: string;
|
|
2484
|
+
topResourceTitle?: string;
|
|
2485
|
+
topResourceRel?: string;
|
|
2486
|
+
topResourceType?: string;
|
|
2487
|
+
topResourceHreflang?: string;
|
|
2488
|
+
topResourceSelector?: string;
|
|
2489
|
+
topResourceCommand?: string;
|
|
2490
|
+
topResourceCommandArgs?: string[];
|
|
2491
|
+
secondResourcePath?: string;
|
|
2492
|
+
secondResourceKind?: string;
|
|
2493
|
+
secondResourceUrl?: string;
|
|
2494
|
+
secondResourceUrlPath?: string;
|
|
2495
|
+
secondResourceUrlQuery?: string;
|
|
2496
|
+
secondResourceTitle?: string;
|
|
2497
|
+
secondResourceRel?: string;
|
|
2498
|
+
secondResourceType?: string;
|
|
2499
|
+
secondResourceHreflang?: string;
|
|
2500
|
+
secondResourceSelector?: string;
|
|
2501
|
+
secondResourceCommand?: string;
|
|
2502
|
+
secondResourceCommandArgs?: string[];
|
|
2503
|
+
topMediaPath?: string;
|
|
2504
|
+
topMediaKind?: string;
|
|
2505
|
+
topMediaUrl?: string;
|
|
2506
|
+
topMediaUrlPath?: string;
|
|
2507
|
+
topMediaUrlQuery?: string;
|
|
2508
|
+
topMediaSelector?: string;
|
|
2509
|
+
topMediaCommand?: string;
|
|
2510
|
+
topMediaCommandArgs?: string[];
|
|
2511
|
+
topMediaText?: string;
|
|
2512
|
+
topMediaAlt?: string;
|
|
2513
|
+
topMediaCaption?: string;
|
|
2514
|
+
topMediaTitle?: string;
|
|
2515
|
+
topMediaWidth?: number;
|
|
2516
|
+
topMediaHeight?: number;
|
|
2517
|
+
secondMediaPath?: string;
|
|
2518
|
+
secondMediaKind?: string;
|
|
2519
|
+
secondMediaUrl?: string;
|
|
2520
|
+
secondMediaUrlPath?: string;
|
|
2521
|
+
secondMediaUrlQuery?: string;
|
|
2522
|
+
secondMediaSelector?: string;
|
|
2523
|
+
secondMediaCommand?: string;
|
|
2524
|
+
secondMediaCommandArgs?: string[];
|
|
2525
|
+
secondMediaText?: string;
|
|
2526
|
+
secondMediaAlt?: string;
|
|
2527
|
+
secondMediaCaption?: string;
|
|
2528
|
+
secondMediaTitle?: string;
|
|
2529
|
+
secondMediaWidth?: number;
|
|
2530
|
+
secondMediaHeight?: number;
|
|
2531
|
+
topSectionPath?: string;
|
|
2532
|
+
topSectionHeading?: string;
|
|
2533
|
+
topSectionLevel?: number;
|
|
2534
|
+
topSectionText?: string;
|
|
2535
|
+
topSectionSelector?: string;
|
|
2536
|
+
secondSectionPath?: string;
|
|
2537
|
+
secondSectionHeading?: string;
|
|
2538
|
+
secondSectionLevel?: number;
|
|
2539
|
+
secondSectionText?: string;
|
|
2540
|
+
secondSectionSelector?: string;
|
|
2541
|
+
topBreadcrumbPath?: string;
|
|
2542
|
+
topBreadcrumbText?: string;
|
|
2543
|
+
topBreadcrumbSource?: string;
|
|
2544
|
+
topBreadcrumbSelector?: string;
|
|
2545
|
+
secondBreadcrumbPath?: string;
|
|
2546
|
+
secondBreadcrumbText?: string;
|
|
2547
|
+
secondBreadcrumbSource?: string;
|
|
2548
|
+
secondBreadcrumbSelector?: string;
|
|
2549
|
+
topPaginationPath?: string;
|
|
2550
|
+
topPaginationKind?: string;
|
|
2551
|
+
topPaginationLabel?: string;
|
|
2552
|
+
topPaginationUrl?: string;
|
|
2553
|
+
topPaginationUrlPath?: string;
|
|
2554
|
+
topPaginationUrlQuery?: string;
|
|
2555
|
+
topPaginationCommand?: string;
|
|
2556
|
+
topPaginationCommandArgs?: string[];
|
|
2557
|
+
topPaginationCurrent?: boolean;
|
|
2558
|
+
topPaginationSelector?: string;
|
|
2559
|
+
secondPaginationPath?: string;
|
|
2560
|
+
secondPaginationKind?: string;
|
|
2561
|
+
secondPaginationLabel?: string;
|
|
2562
|
+
secondPaginationUrl?: string;
|
|
2563
|
+
secondPaginationUrlPath?: string;
|
|
2564
|
+
secondPaginationUrlQuery?: string;
|
|
2565
|
+
secondPaginationCommand?: string;
|
|
2566
|
+
secondPaginationCommandArgs?: string[];
|
|
2567
|
+
secondPaginationCurrent?: boolean;
|
|
2568
|
+
secondPaginationSelector?: string;
|
|
2569
|
+
topTocPath?: string;
|
|
2570
|
+
topTocTitle?: string;
|
|
2571
|
+
topTocItemCount?: number;
|
|
2572
|
+
topTocText?: string;
|
|
2573
|
+
topTocFirstItemLabel?: string;
|
|
2574
|
+
topTocFirstItemUrl?: string;
|
|
2575
|
+
topTocFirstItemUrlPath?: string;
|
|
2576
|
+
topTocFirstItemUrlQuery?: string;
|
|
2577
|
+
topTocFirstItemCommand?: string;
|
|
2578
|
+
topTocFirstItemCommandArgs?: string[];
|
|
2579
|
+
topTocSelector?: string;
|
|
2580
|
+
secondTocPath?: string;
|
|
2581
|
+
secondTocTitle?: string;
|
|
2582
|
+
secondTocItemCount?: number;
|
|
2583
|
+
secondTocText?: string;
|
|
2584
|
+
secondTocFirstItemLabel?: string;
|
|
2585
|
+
secondTocFirstItemUrl?: string;
|
|
2586
|
+
secondTocFirstItemUrlPath?: string;
|
|
2587
|
+
secondTocFirstItemUrlQuery?: string;
|
|
2588
|
+
secondTocFirstItemCommand?: string;
|
|
2589
|
+
secondTocFirstItemCommandArgs?: string[];
|
|
2590
|
+
secondTocSelector?: string;
|
|
2591
|
+
topEmbedPath?: string;
|
|
2592
|
+
topEmbedKind?: string;
|
|
2593
|
+
topEmbedUrl?: string;
|
|
2594
|
+
topEmbedUrlPath?: string;
|
|
2595
|
+
topEmbedUrlQuery?: string;
|
|
2596
|
+
topEmbedTitle?: string;
|
|
2597
|
+
topEmbedSelector?: string;
|
|
2598
|
+
topEmbedCommand?: string;
|
|
2599
|
+
topEmbedCommandArgs?: string[];
|
|
2600
|
+
secondEmbedPath?: string;
|
|
2601
|
+
secondEmbedKind?: string;
|
|
2602
|
+
secondEmbedUrl?: string;
|
|
2603
|
+
secondEmbedUrlPath?: string;
|
|
2604
|
+
secondEmbedUrlQuery?: string;
|
|
2605
|
+
secondEmbedTitle?: string;
|
|
2606
|
+
secondEmbedSelector?: string;
|
|
2607
|
+
secondEmbedCommand?: string;
|
|
2608
|
+
secondEmbedCommandArgs?: string[];
|
|
2609
|
+
topTranscriptPath?: string;
|
|
2610
|
+
topTranscriptKind?: string;
|
|
2611
|
+
topTranscriptUrl?: string;
|
|
2612
|
+
topTranscriptUrlPath?: string;
|
|
2613
|
+
topTranscriptUrlQuery?: string;
|
|
2614
|
+
topTranscriptLabel?: string;
|
|
2615
|
+
topTranscriptLanguage?: string;
|
|
2616
|
+
topTranscriptSelector?: string;
|
|
2617
|
+
topTranscriptCommand?: string;
|
|
2618
|
+
topTranscriptCommandArgs?: string[];
|
|
2619
|
+
secondTranscriptPath?: string;
|
|
2620
|
+
secondTranscriptKind?: string;
|
|
2621
|
+
secondTranscriptUrl?: string;
|
|
2622
|
+
secondTranscriptUrlPath?: string;
|
|
2623
|
+
secondTranscriptUrlQuery?: string;
|
|
2624
|
+
secondTranscriptLabel?: string;
|
|
2625
|
+
secondTranscriptLanguage?: string;
|
|
2626
|
+
secondTranscriptSelector?: string;
|
|
2627
|
+
secondTranscriptCommand?: string;
|
|
2628
|
+
secondTranscriptCommandArgs?: string[];
|
|
2629
|
+
topAuthorLinkPath?: string;
|
|
2630
|
+
topAuthorLinkName?: string;
|
|
2631
|
+
topAuthorLinkUrl?: string;
|
|
2632
|
+
topAuthorLinkUrlPath?: string;
|
|
2633
|
+
topAuthorLinkUrlQuery?: string;
|
|
2634
|
+
topAuthorLinkSource?: string;
|
|
2635
|
+
topAuthorLinkSelector?: string;
|
|
2636
|
+
topAuthorLinkCommand?: string;
|
|
2637
|
+
topAuthorLinkCommandArgs?: string[];
|
|
2638
|
+
secondAuthorLinkPath?: string;
|
|
2639
|
+
secondAuthorLinkName?: string;
|
|
2640
|
+
secondAuthorLinkUrl?: string;
|
|
2641
|
+
secondAuthorLinkUrlPath?: string;
|
|
2642
|
+
secondAuthorLinkUrlQuery?: string;
|
|
2643
|
+
secondAuthorLinkSource?: string;
|
|
2644
|
+
secondAuthorLinkSelector?: string;
|
|
2645
|
+
secondAuthorLinkCommand?: string;
|
|
2646
|
+
secondAuthorLinkCommandArgs?: string[];
|
|
2647
|
+
topProvenancePath?: string;
|
|
2648
|
+
topProvenanceKind?: string;
|
|
2649
|
+
topProvenanceLabel?: string;
|
|
2650
|
+
topProvenanceValue?: string;
|
|
2651
|
+
topProvenanceUrl?: string;
|
|
2652
|
+
topProvenanceUrlPath?: string;
|
|
2653
|
+
topProvenanceUrlQuery?: string;
|
|
2654
|
+
topProvenanceSource?: string;
|
|
2655
|
+
topProvenanceSelector?: string;
|
|
2656
|
+
topProvenanceCommand?: string;
|
|
2657
|
+
topProvenanceCommandArgs?: string[];
|
|
2658
|
+
secondProvenancePath?: string;
|
|
2659
|
+
secondProvenanceKind?: string;
|
|
2660
|
+
secondProvenanceLabel?: string;
|
|
2661
|
+
secondProvenanceValue?: string;
|
|
2662
|
+
secondProvenanceUrl?: string;
|
|
2663
|
+
secondProvenanceUrlPath?: string;
|
|
2664
|
+
secondProvenanceUrlQuery?: string;
|
|
2665
|
+
secondProvenanceSource?: string;
|
|
2666
|
+
secondProvenanceSelector?: string;
|
|
2667
|
+
secondProvenanceCommand?: string;
|
|
2668
|
+
secondProvenanceCommandArgs?: string[];
|
|
2669
|
+
topOfferPath?: string;
|
|
2670
|
+
topOfferName?: string;
|
|
2671
|
+
topOfferPrice?: string;
|
|
2672
|
+
topOfferPriceAmount?: number;
|
|
2673
|
+
topOfferCurrency?: string;
|
|
2674
|
+
topOfferAvailability?: string;
|
|
2675
|
+
topOfferUrl?: string;
|
|
2676
|
+
topOfferUrlPath?: string;
|
|
2677
|
+
topOfferUrlQuery?: string;
|
|
2678
|
+
topOfferCommand?: string;
|
|
2679
|
+
topOfferCommandArgs?: string[];
|
|
2680
|
+
topOfferSelector?: string;
|
|
2681
|
+
secondOfferPath?: string;
|
|
2682
|
+
secondOfferName?: string;
|
|
2683
|
+
secondOfferPrice?: string;
|
|
2684
|
+
secondOfferPriceAmount?: number;
|
|
2685
|
+
secondOfferCurrency?: string;
|
|
2686
|
+
secondOfferAvailability?: string;
|
|
2687
|
+
secondOfferUrl?: string;
|
|
2688
|
+
secondOfferUrlPath?: string;
|
|
2689
|
+
secondOfferUrlQuery?: string;
|
|
2690
|
+
secondOfferCommand?: string;
|
|
2691
|
+
secondOfferCommandArgs?: string[];
|
|
2692
|
+
secondOfferSelector?: string;
|
|
2693
|
+
topDatasetPath?: string;
|
|
2694
|
+
topDatasetKind?: string;
|
|
2695
|
+
topDatasetName?: string;
|
|
2696
|
+
topDatasetUrl?: string;
|
|
2697
|
+
topDatasetUrlPath?: string;
|
|
2698
|
+
topDatasetUrlQuery?: string;
|
|
2699
|
+
topDatasetCommand?: string;
|
|
2700
|
+
topDatasetCommandArgs?: string[];
|
|
2701
|
+
topDatasetDistributionUrl?: string;
|
|
2702
|
+
topDatasetDistributionUrlPath?: string;
|
|
2703
|
+
topDatasetDistributionUrlQuery?: string;
|
|
2704
|
+
topDatasetDistributionCommand?: string;
|
|
2705
|
+
topDatasetDistributionCommandArgs?: string[];
|
|
2706
|
+
topDatasetLicenseUrl?: string;
|
|
2707
|
+
topDatasetLicenseUrlPath?: string;
|
|
2708
|
+
topDatasetLicenseUrlQuery?: string;
|
|
2709
|
+
topDatasetLicenseCommand?: string;
|
|
2710
|
+
topDatasetLicenseCommandArgs?: string[];
|
|
2711
|
+
topDatasetEncodingFormat?: string;
|
|
2712
|
+
topDatasetTemporalCoverage?: string;
|
|
2713
|
+
topDatasetSpatialCoverage?: string;
|
|
2714
|
+
topDatasetCreator?: string;
|
|
2715
|
+
topDatasetSelector?: string;
|
|
2716
|
+
secondDatasetPath?: string;
|
|
2717
|
+
secondDatasetKind?: string;
|
|
2718
|
+
secondDatasetName?: string;
|
|
2719
|
+
secondDatasetUrl?: string;
|
|
2720
|
+
secondDatasetUrlPath?: string;
|
|
2721
|
+
secondDatasetUrlQuery?: string;
|
|
2722
|
+
secondDatasetCommand?: string;
|
|
2723
|
+
secondDatasetCommandArgs?: string[];
|
|
2724
|
+
secondDatasetDistributionUrl?: string;
|
|
2725
|
+
secondDatasetDistributionUrlPath?: string;
|
|
2726
|
+
secondDatasetDistributionUrlQuery?: string;
|
|
2727
|
+
secondDatasetDistributionCommand?: string;
|
|
2728
|
+
secondDatasetDistributionCommandArgs?: string[];
|
|
2729
|
+
secondDatasetLicenseUrl?: string;
|
|
2730
|
+
secondDatasetLicenseUrlPath?: string;
|
|
2731
|
+
secondDatasetLicenseUrlQuery?: string;
|
|
2732
|
+
secondDatasetLicenseCommand?: string;
|
|
2733
|
+
secondDatasetLicenseCommandArgs?: string[];
|
|
2734
|
+
secondDatasetEncodingFormat?: string;
|
|
2735
|
+
secondDatasetTemporalCoverage?: string;
|
|
2736
|
+
secondDatasetSpatialCoverage?: string;
|
|
2737
|
+
secondDatasetCreator?: string;
|
|
2738
|
+
secondDatasetSelector?: string;
|
|
2739
|
+
topIdentityPath?: string;
|
|
2740
|
+
topIdentityKind?: string;
|
|
2741
|
+
topIdentityName?: string;
|
|
2742
|
+
topIdentityUrl?: string;
|
|
2743
|
+
topIdentityUrlPath?: string;
|
|
2744
|
+
topIdentityUrlQuery?: string;
|
|
2745
|
+
topIdentityCommand?: string;
|
|
2746
|
+
topIdentityCommandArgs?: string[];
|
|
2747
|
+
topIdentityLogoUrl?: string;
|
|
2748
|
+
topIdentityLogoUrlPath?: string;
|
|
2749
|
+
topIdentityLogoUrlQuery?: string;
|
|
2750
|
+
topIdentityLogoCommand?: string;
|
|
2751
|
+
topIdentityLogoCommandArgs?: string[];
|
|
2752
|
+
topIdentitySameAsUrl?: string;
|
|
2753
|
+
topIdentitySameAsUrlPath?: string;
|
|
2754
|
+
topIdentitySameAsUrlQuery?: string;
|
|
2755
|
+
topIdentitySameAsCommand?: string;
|
|
2756
|
+
topIdentitySameAsCommandArgs?: string[];
|
|
2757
|
+
topIdentitySource?: string;
|
|
2758
|
+
topIdentitySelector?: string;
|
|
2759
|
+
secondIdentityPath?: string;
|
|
2760
|
+
secondIdentityKind?: string;
|
|
2761
|
+
secondIdentityName?: string;
|
|
2762
|
+
secondIdentityUrl?: string;
|
|
2763
|
+
secondIdentityUrlPath?: string;
|
|
2764
|
+
secondIdentityUrlQuery?: string;
|
|
2765
|
+
secondIdentityCommand?: string;
|
|
2766
|
+
secondIdentityCommandArgs?: string[];
|
|
2767
|
+
secondIdentityLogoUrl?: string;
|
|
2768
|
+
secondIdentityLogoUrlPath?: string;
|
|
2769
|
+
secondIdentityLogoUrlQuery?: string;
|
|
2770
|
+
secondIdentityLogoCommand?: string;
|
|
2771
|
+
secondIdentityLogoCommandArgs?: string[];
|
|
2772
|
+
secondIdentitySameAsUrl?: string;
|
|
2773
|
+
secondIdentitySameAsUrlPath?: string;
|
|
2774
|
+
secondIdentitySameAsUrlQuery?: string;
|
|
2775
|
+
secondIdentitySameAsCommand?: string;
|
|
2776
|
+
secondIdentitySameAsCommandArgs?: string[];
|
|
2777
|
+
secondIdentitySource?: string;
|
|
2778
|
+
secondIdentitySelector?: string;
|
|
2779
|
+
topTimelinePath?: string;
|
|
2780
|
+
topTimelineKind?: string;
|
|
2781
|
+
topTimelineLabel?: string;
|
|
2782
|
+
topTimelineValue?: string;
|
|
2783
|
+
topTimelineIsoDate?: string;
|
|
2784
|
+
topTimelineUnixMs?: number;
|
|
2785
|
+
topTimelineSource?: string;
|
|
2786
|
+
topTimelineSelector?: string;
|
|
2787
|
+
secondTimelinePath?: string;
|
|
2788
|
+
secondTimelineKind?: string;
|
|
2789
|
+
secondTimelineLabel?: string;
|
|
2790
|
+
secondTimelineValue?: string;
|
|
2791
|
+
secondTimelineIsoDate?: string;
|
|
2792
|
+
secondTimelineUnixMs?: number;
|
|
2793
|
+
secondTimelineSource?: string;
|
|
2794
|
+
secondTimelineSelector?: string;
|
|
2795
|
+
topContactPointPath?: string;
|
|
2796
|
+
topContactPointKind?: string;
|
|
2797
|
+
topContactPointLabel?: string;
|
|
2798
|
+
topContactPointValue?: string;
|
|
2799
|
+
topContactPointUrl?: string;
|
|
2800
|
+
topContactPointUrlPath?: string;
|
|
2801
|
+
topContactPointUrlQuery?: string;
|
|
2802
|
+
topContactPointCommand?: string;
|
|
2803
|
+
topContactPointCommandArgs?: string[];
|
|
2804
|
+
topContactPointSource?: string;
|
|
2805
|
+
topContactPointSelector?: string;
|
|
2806
|
+
secondContactPointPath?: string;
|
|
2807
|
+
secondContactPointKind?: string;
|
|
2808
|
+
secondContactPointLabel?: string;
|
|
2809
|
+
secondContactPointValue?: string;
|
|
2810
|
+
secondContactPointUrl?: string;
|
|
2811
|
+
secondContactPointUrlPath?: string;
|
|
2812
|
+
secondContactPointUrlQuery?: string;
|
|
2813
|
+
secondContactPointCommand?: string;
|
|
2814
|
+
secondContactPointCommandArgs?: string[];
|
|
2815
|
+
secondContactPointSource?: string;
|
|
2816
|
+
secondContactPointSelector?: string;
|
|
2817
|
+
structuredReadTargetCount?: number;
|
|
2818
|
+
bestStructuredReadTarget?: string;
|
|
2819
|
+
bestStructuredReadTargetCount?: number;
|
|
2820
|
+
bestStructuredReadTargetScore?: number;
|
|
2821
|
+
bestStructuredReadTargetPrimary?: boolean;
|
|
2822
|
+
bestStructuredReadTargetReason?: string;
|
|
2823
|
+
hiddenSignalCount?: number;
|
|
2824
|
+
hiddenHydrationCount?: number;
|
|
2825
|
+
hiddenApiEndpointCount?: number;
|
|
2826
|
+
hiddenClientStateCount?: number;
|
|
2827
|
+
hiddenRuntimeCount?: number;
|
|
2828
|
+
hiddenConfigCount?: number;
|
|
2829
|
+
hiddenAppHintCount?: number;
|
|
2830
|
+
hiddenMobileHintCount?: number;
|
|
2831
|
+
hiddenTopicCount?: number;
|
|
2832
|
+
hiddenKeyValueCount?: number;
|
|
2833
|
+
hiddenMetaFactCount?: number;
|
|
2834
|
+
hiddenHttpPolicyCount?: number;
|
|
2835
|
+
hiddenSchemaFactCount?: number;
|
|
2836
|
+
topHydrationPath?: string;
|
|
2837
|
+
topHydrationKind?: string;
|
|
2838
|
+
topHydrationLabel?: string;
|
|
2839
|
+
topHydrationUrl?: string;
|
|
2840
|
+
topHydrationUrlPath?: string;
|
|
2841
|
+
topHydrationUrlQuery?: string;
|
|
2842
|
+
topHydrationCommand?: string;
|
|
2843
|
+
topHydrationCommandArgs?: string[];
|
|
2844
|
+
topHydrationSelector?: string;
|
|
2845
|
+
secondHydrationPath?: string;
|
|
2846
|
+
secondHydrationKind?: string;
|
|
2847
|
+
secondHydrationLabel?: string;
|
|
2848
|
+
secondHydrationUrl?: string;
|
|
2849
|
+
secondHydrationUrlPath?: string;
|
|
2850
|
+
secondHydrationUrlQuery?: string;
|
|
2851
|
+
secondHydrationCommand?: string;
|
|
2852
|
+
secondHydrationCommandArgs?: string[];
|
|
2853
|
+
secondHydrationSelector?: string;
|
|
2854
|
+
topApiEndpointPath?: string;
|
|
2855
|
+
topApiEndpointKind?: string;
|
|
2856
|
+
topApiEndpointMethod?: string;
|
|
2857
|
+
topApiEndpointUrl?: string;
|
|
2858
|
+
topApiEndpointUrlPath?: string;
|
|
2859
|
+
topApiEndpointUrlQuery?: string;
|
|
2860
|
+
topApiEndpointCommand?: string;
|
|
2861
|
+
topApiEndpointCommandArgs?: string[];
|
|
2862
|
+
topApiEndpointSelector?: string;
|
|
2863
|
+
secondApiEndpointPath?: string;
|
|
2864
|
+
secondApiEndpointKind?: string;
|
|
2865
|
+
secondApiEndpointMethod?: string;
|
|
2866
|
+
secondApiEndpointUrl?: string;
|
|
2867
|
+
secondApiEndpointUrlPath?: string;
|
|
2868
|
+
secondApiEndpointUrlQuery?: string;
|
|
2869
|
+
secondApiEndpointCommand?: string;
|
|
2870
|
+
secondApiEndpointCommandArgs?: string[];
|
|
2871
|
+
secondApiEndpointSelector?: string;
|
|
2872
|
+
topClientStatePath?: string;
|
|
2873
|
+
topClientStateKind?: string;
|
|
2874
|
+
topClientStateOperation?: string;
|
|
2875
|
+
topClientStateKey?: string;
|
|
2876
|
+
topClientStateSelector?: string;
|
|
2877
|
+
secondClientStatePath?: string;
|
|
2878
|
+
secondClientStateKind?: string;
|
|
2879
|
+
secondClientStateOperation?: string;
|
|
2880
|
+
secondClientStateKey?: string;
|
|
2881
|
+
secondClientStateSelector?: string;
|
|
2882
|
+
topRuntimePath?: string;
|
|
2883
|
+
topRuntimeKind?: string;
|
|
2884
|
+
topRuntimeUrl?: string;
|
|
2885
|
+
topRuntimeUrlPath?: string;
|
|
2886
|
+
topRuntimeUrlQuery?: string;
|
|
2887
|
+
topRuntimeCommand?: string;
|
|
2888
|
+
topRuntimeCommandArgs?: string[];
|
|
2889
|
+
topRuntimeSelector?: string;
|
|
2890
|
+
secondRuntimePath?: string;
|
|
2891
|
+
secondRuntimeKind?: string;
|
|
2892
|
+
secondRuntimeUrl?: string;
|
|
2893
|
+
secondRuntimeUrlPath?: string;
|
|
2894
|
+
secondRuntimeUrlQuery?: string;
|
|
2895
|
+
secondRuntimeCommand?: string;
|
|
2896
|
+
secondRuntimeCommandArgs?: string[];
|
|
2897
|
+
secondRuntimeSelector?: string;
|
|
2898
|
+
topConfigPath?: string;
|
|
2899
|
+
topConfigKind?: string;
|
|
2900
|
+
topConfigName?: string;
|
|
2901
|
+
topConfigKeys?: string[];
|
|
2902
|
+
topConfigKeyCount?: number;
|
|
2903
|
+
topConfigSelector?: string;
|
|
2904
|
+
secondConfigPath?: string;
|
|
2905
|
+
secondConfigKind?: string;
|
|
2906
|
+
secondConfigName?: string;
|
|
2907
|
+
secondConfigKeys?: string[];
|
|
2908
|
+
secondConfigKeyCount?: number;
|
|
2909
|
+
secondConfigSelector?: string;
|
|
2910
|
+
topAppHintPath?: string;
|
|
2911
|
+
topAppHintKind?: string;
|
|
2912
|
+
topAppHintLabel?: string;
|
|
2913
|
+
topAppHintUrl?: string;
|
|
2914
|
+
topAppHintUrlPath?: string;
|
|
2915
|
+
topAppHintUrlQuery?: string;
|
|
2916
|
+
topAppHintCommand?: string;
|
|
2917
|
+
topAppHintCommandArgs?: string[];
|
|
2918
|
+
topAppHintSelector?: string;
|
|
2919
|
+
secondAppHintPath?: string;
|
|
2920
|
+
secondAppHintKind?: string;
|
|
2921
|
+
secondAppHintLabel?: string;
|
|
2922
|
+
secondAppHintUrl?: string;
|
|
2923
|
+
secondAppHintUrlPath?: string;
|
|
2924
|
+
secondAppHintUrlQuery?: string;
|
|
2925
|
+
secondAppHintCommand?: string;
|
|
2926
|
+
secondAppHintCommandArgs?: string[];
|
|
2927
|
+
secondAppHintSelector?: string;
|
|
2928
|
+
topMobileHintPath?: string;
|
|
2929
|
+
topMobileHintKind?: string;
|
|
2930
|
+
topMobileHintLabel?: string;
|
|
2931
|
+
topMobileHintValue?: string;
|
|
2932
|
+
topMobileHintPlatform?: string;
|
|
2933
|
+
topMobileHintUrl?: string;
|
|
2934
|
+
topMobileHintUrlPath?: string;
|
|
2935
|
+
topMobileHintUrlQuery?: string;
|
|
2936
|
+
topMobileHintSelector?: string;
|
|
2937
|
+
secondMobileHintPath?: string;
|
|
2938
|
+
secondMobileHintKind?: string;
|
|
2939
|
+
secondMobileHintLabel?: string;
|
|
2940
|
+
secondMobileHintValue?: string;
|
|
2941
|
+
secondMobileHintPlatform?: string;
|
|
2942
|
+
secondMobileHintUrl?: string;
|
|
2943
|
+
secondMobileHintUrlPath?: string;
|
|
2944
|
+
secondMobileHintUrlQuery?: string;
|
|
2945
|
+
secondMobileHintSelector?: string;
|
|
2946
|
+
topTopicPath?: string;
|
|
2947
|
+
topTopicKind?: string;
|
|
2948
|
+
topTopicLabel?: string;
|
|
2949
|
+
topTopicValue?: string;
|
|
2950
|
+
topTopicSource?: string;
|
|
2951
|
+
topTopicSelector?: string;
|
|
2952
|
+
secondTopicPath?: string;
|
|
2953
|
+
secondTopicKind?: string;
|
|
2954
|
+
secondTopicLabel?: string;
|
|
2955
|
+
secondTopicValue?: string;
|
|
2956
|
+
secondTopicSource?: string;
|
|
2957
|
+
secondTopicSelector?: string;
|
|
2958
|
+
topKeyValuePath?: string;
|
|
2959
|
+
topKeyValueLabel?: string;
|
|
2960
|
+
topKeyValueValue?: string;
|
|
2961
|
+
topKeyValueDatetime?: string;
|
|
2962
|
+
topKeyValueSource?: string;
|
|
2963
|
+
topKeyValueSelector?: string;
|
|
2964
|
+
secondKeyValuePath?: string;
|
|
2965
|
+
secondKeyValueLabel?: string;
|
|
2966
|
+
secondKeyValueValue?: string;
|
|
2967
|
+
secondKeyValueDatetime?: string;
|
|
2968
|
+
secondKeyValueSource?: string;
|
|
2969
|
+
secondKeyValueSelector?: string;
|
|
2970
|
+
topMetaFactPath?: string;
|
|
2971
|
+
topMetaFactLabel?: string;
|
|
2972
|
+
topMetaFactValue?: string;
|
|
2973
|
+
topMetaFactUrl?: string;
|
|
2974
|
+
topMetaFactSource?: string;
|
|
2975
|
+
topMetaFactSelector?: string;
|
|
2976
|
+
secondMetaFactPath?: string;
|
|
2977
|
+
secondMetaFactLabel?: string;
|
|
2978
|
+
secondMetaFactValue?: string;
|
|
2979
|
+
secondMetaFactUrl?: string;
|
|
2980
|
+
secondMetaFactSource?: string;
|
|
2981
|
+
secondMetaFactSelector?: string;
|
|
2982
|
+
topHttpPolicyPath?: string;
|
|
2983
|
+
topHttpPolicyName?: string;
|
|
2984
|
+
topHttpPolicyValue?: string;
|
|
2985
|
+
topHttpPolicySource?: string;
|
|
2986
|
+
topHttpPolicySelector?: string;
|
|
2987
|
+
secondHttpPolicyPath?: string;
|
|
2988
|
+
secondHttpPolicyName?: string;
|
|
2989
|
+
secondHttpPolicyValue?: string;
|
|
2990
|
+
secondHttpPolicySource?: string;
|
|
2991
|
+
secondHttpPolicySelector?: string;
|
|
2992
|
+
topSchemaFactPath?: string;
|
|
2993
|
+
topSchemaFactTypes?: string[];
|
|
2994
|
+
topSchemaFactFirstLabel?: string;
|
|
2995
|
+
topSchemaFactFirstValue?: string;
|
|
2996
|
+
topSchemaFactFactCount?: number;
|
|
2997
|
+
topSchemaFactSelector?: string;
|
|
2998
|
+
secondSchemaFactPath?: string;
|
|
2999
|
+
secondSchemaFactTypes?: string[];
|
|
3000
|
+
secondSchemaFactFirstLabel?: string;
|
|
3001
|
+
secondSchemaFactFirstValue?: string;
|
|
3002
|
+
secondSchemaFactFactCount?: number;
|
|
3003
|
+
secondSchemaFactSelector?: string;
|
|
3004
|
+
topHiddenSignalGroup?: string;
|
|
3005
|
+
topHiddenSignalPath?: string;
|
|
3006
|
+
topHiddenSignalKind?: string;
|
|
3007
|
+
topHiddenSignalText?: string;
|
|
3008
|
+
topHiddenSignalUrl?: string;
|
|
3009
|
+
topHiddenSignalUrlPath?: string;
|
|
3010
|
+
topHiddenSignalUrlQuery?: string;
|
|
3011
|
+
topHiddenSignalSource?: string;
|
|
3012
|
+
topHiddenSignalSelector?: string;
|
|
3013
|
+
secondHiddenSignalGroup?: string;
|
|
3014
|
+
secondHiddenSignalPath?: string;
|
|
3015
|
+
secondHiddenSignalKind?: string;
|
|
3016
|
+
secondHiddenSignalText?: string;
|
|
3017
|
+
secondHiddenSignalUrl?: string;
|
|
3018
|
+
secondHiddenSignalUrlPath?: string;
|
|
3019
|
+
secondHiddenSignalUrlQuery?: string;
|
|
3020
|
+
secondHiddenSignalSource?: string;
|
|
3021
|
+
secondHiddenSignalSelector?: string;
|
|
3022
|
+
hiddenReadTargetCount?: number;
|
|
3023
|
+
bestHiddenReadTarget?: string;
|
|
3024
|
+
bestHiddenReadTargetCount?: number;
|
|
3025
|
+
bestHiddenReadTargetScore?: number;
|
|
3026
|
+
bestHiddenReadTargetPrimary?: boolean;
|
|
3027
|
+
bestHiddenReadTargetReason?: string;
|
|
3028
|
+
sourceLinkCount?: number;
|
|
3029
|
+
sourceChoiceCount?: number;
|
|
3030
|
+
sourceChoices?: AgentSourceChoice[];
|
|
3031
|
+
topSourceChoicePath?: string;
|
|
3032
|
+
topSourceChoiceTitle?: string;
|
|
3033
|
+
topSourceChoiceUrl?: string;
|
|
3034
|
+
topSourceChoiceHost?: string;
|
|
3035
|
+
topSourceChoiceUrlPath?: string;
|
|
3036
|
+
topSourceChoiceUrlQuery?: string;
|
|
3037
|
+
topSourceChoiceKind?: "internal" | "external";
|
|
3038
|
+
topSourceChoiceRank?: number;
|
|
3039
|
+
topSourceChoiceText?: string;
|
|
3040
|
+
topSourceChoiceSnippet?: string;
|
|
3041
|
+
topSourceChoiceDateText?: string;
|
|
3042
|
+
topSourceChoiceDateIso?: string;
|
|
3043
|
+
topSourceChoiceDateUnixMs?: number;
|
|
3044
|
+
topSourceChoiceDatePrecision?: "day" | "month" | "year";
|
|
3045
|
+
topSourceChoiceDateSource?: "title" | "snippet";
|
|
3046
|
+
topSourceChoiceCommand?: string;
|
|
3047
|
+
topSourceChoiceCommandArgs?: string[];
|
|
3048
|
+
topSourceChoiceSourceType?: string;
|
|
3049
|
+
topSourceChoiceSourceScore?: number;
|
|
3050
|
+
topSourceChoiceSourceHints?: string[];
|
|
3051
|
+
topSourceChoiceRelevance?: "low" | "medium" | "high";
|
|
3052
|
+
topSourceChoiceMatchedTerm?: string;
|
|
3053
|
+
topSourceChoiceFindMatch?: string;
|
|
3054
|
+
topSourceChoiceLikelyOfficial?: boolean;
|
|
3055
|
+
topSourceChoicePrimary?: boolean;
|
|
3056
|
+
topSourceChoiceSelector?: string;
|
|
3057
|
+
topSourceChoiceReason?: string;
|
|
3058
|
+
secondSourceChoicePath?: string;
|
|
3059
|
+
secondSourceChoiceTitle?: string;
|
|
3060
|
+
secondSourceChoiceUrl?: string;
|
|
3061
|
+
secondSourceChoiceHost?: string;
|
|
3062
|
+
secondSourceChoiceUrlPath?: string;
|
|
3063
|
+
secondSourceChoiceUrlQuery?: string;
|
|
3064
|
+
secondSourceChoiceKind?: "internal" | "external";
|
|
3065
|
+
secondSourceChoiceRank?: number;
|
|
3066
|
+
secondSourceChoiceText?: string;
|
|
3067
|
+
secondSourceChoiceSnippet?: string;
|
|
3068
|
+
secondSourceChoiceDateText?: string;
|
|
3069
|
+
secondSourceChoiceDateIso?: string;
|
|
3070
|
+
secondSourceChoiceDateUnixMs?: number;
|
|
3071
|
+
secondSourceChoiceDatePrecision?: "day" | "month" | "year";
|
|
3072
|
+
secondSourceChoiceDateSource?: "title" | "snippet";
|
|
3073
|
+
secondSourceChoiceCommand?: string;
|
|
3074
|
+
secondSourceChoiceCommandArgs?: string[];
|
|
3075
|
+
secondSourceChoiceSourceType?: string;
|
|
3076
|
+
secondSourceChoiceSourceScore?: number;
|
|
3077
|
+
secondSourceChoiceSourceHints?: string[];
|
|
3078
|
+
secondSourceChoiceRelevance?: "low" | "medium" | "high";
|
|
3079
|
+
secondSourceChoiceMatchedTerm?: string;
|
|
3080
|
+
secondSourceChoiceFindMatch?: string;
|
|
3081
|
+
secondSourceChoiceLikelyOfficial?: boolean;
|
|
3082
|
+
secondSourceChoicePrimary?: boolean;
|
|
3083
|
+
secondSourceChoiceSelector?: string;
|
|
3084
|
+
secondSourceChoiceReason?: string;
|
|
3085
|
+
topChoiceKind?: "result" | "source" | "form" | "action-target";
|
|
3086
|
+
topChoicePath?: string;
|
|
3087
|
+
topChoiceLabel?: string;
|
|
3088
|
+
topChoiceUrl?: string;
|
|
3089
|
+
topChoiceUrlPath?: string;
|
|
3090
|
+
topChoiceUrlQuery?: string;
|
|
3091
|
+
topChoiceActionUrl?: string;
|
|
3092
|
+
topChoiceTargetUrl?: string;
|
|
3093
|
+
topChoiceUrlTemplate?: string;
|
|
3094
|
+
topChoiceQueryField?: string;
|
|
3095
|
+
topChoiceQueryInput?: string;
|
|
3096
|
+
topChoiceRequiredFieldName?: string;
|
|
3097
|
+
topChoiceRequiredFieldSelector?: string;
|
|
3098
|
+
topChoiceInvalidFieldName?: string;
|
|
3099
|
+
topChoiceInvalidFieldInvalid?: SemanticNodeState["invalid"];
|
|
3100
|
+
topChoiceInvalidFieldSelector?: string;
|
|
3101
|
+
topChoiceHost?: string;
|
|
3102
|
+
topChoiceSnippet?: string;
|
|
3103
|
+
topChoiceDateText?: string;
|
|
3104
|
+
topChoiceDateIso?: string;
|
|
3105
|
+
topChoiceDateUnixMs?: number;
|
|
3106
|
+
topChoiceDatePrecision?: "day" | "month" | "year";
|
|
3107
|
+
topChoiceDateSource?: "title" | "snippet";
|
|
3108
|
+
topChoiceCommand?: string;
|
|
3109
|
+
topChoiceCommandArgs?: string[];
|
|
3110
|
+
topChoiceFirstSitelinkTitle?: string;
|
|
3111
|
+
topChoiceFirstSitelinkUrl?: string;
|
|
3112
|
+
topChoiceFirstSitelinkUrlPath?: string;
|
|
3113
|
+
topChoiceFirstSitelinkUrlQuery?: string;
|
|
3114
|
+
topChoiceFirstSitelinkSelector?: string;
|
|
3115
|
+
topChoiceFirstSitelinkCommand?: string;
|
|
3116
|
+
topChoiceFirstSitelinkCommandArgs?: string[];
|
|
3117
|
+
topChoiceRank?: number;
|
|
3118
|
+
topChoiceOpenResult?: number | "best";
|
|
3119
|
+
topChoiceRecommended?: boolean;
|
|
3120
|
+
topChoicePrimary?: boolean;
|
|
3121
|
+
topChoiceSource?: string;
|
|
3122
|
+
topChoiceSourceType?: string;
|
|
3123
|
+
topChoiceSourceScore?: number;
|
|
3124
|
+
topChoiceSourceHints?: string[];
|
|
3125
|
+
topChoiceRelevance?: AgentTarget["relevance"];
|
|
3126
|
+
topChoiceMatchedTerm?: string;
|
|
3127
|
+
topChoiceFindMatch?: string;
|
|
3128
|
+
topChoiceSitelinkCount?: number;
|
|
3129
|
+
topChoiceLikelyOfficial?: boolean;
|
|
3130
|
+
topChoiceMethod?: string;
|
|
3131
|
+
topChoiceEncodingType?: string;
|
|
3132
|
+
topChoiceSubmitDisabled?: boolean;
|
|
3133
|
+
topChoiceDisabled?: boolean;
|
|
3134
|
+
topChoicePressed?: SemanticNodeState["pressed"];
|
|
3135
|
+
topChoiceExpanded?: boolean;
|
|
3136
|
+
topChoiceHaspopup?: SemanticNodeState["haspopup"];
|
|
3137
|
+
topChoiceControls?: string;
|
|
3138
|
+
topChoiceSelector?: string;
|
|
3139
|
+
topChoiceReason?: string;
|
|
3140
|
+
sourceSearchQuery?: string;
|
|
3141
|
+
sourceSearchEngine?: string;
|
|
3142
|
+
sourceSearchSelectedEngine?: string;
|
|
3143
|
+
sourceSearchEngineAttemptCount?: number;
|
|
3144
|
+
sourceSearchEngineSuccessCount?: number;
|
|
3145
|
+
sourceSearchEngineFailureCount?: number;
|
|
3146
|
+
sourceSearchFirstOkEngine?: string;
|
|
3147
|
+
sourceSearchFirstOkResultCount?: number;
|
|
3148
|
+
sourceSearchFirstFailedEngine?: string;
|
|
3149
|
+
sourceSearchFirstFailureCode?: string;
|
|
3150
|
+
sourceSearchFirstFailureStatus?: number;
|
|
3151
|
+
sourceSearchSearchUrl?: string;
|
|
3152
|
+
sourceSearchLang?: string;
|
|
3153
|
+
sourceSearchRegion?: string;
|
|
3154
|
+
sourceSearchFindQueryCount?: number;
|
|
3155
|
+
sourceSearchTopFindQuery?: string;
|
|
3156
|
+
sourceSearchSelectedRank?: number;
|
|
3157
|
+
sourceSearchSelectedTitle?: string;
|
|
3158
|
+
sourceSearchSelectedUrl?: string;
|
|
3159
|
+
sourceSearchSelectedUrlPath?: string;
|
|
3160
|
+
sourceSearchSelectedUrlQuery?: string;
|
|
3161
|
+
sourceSearchSelectedHost?: string;
|
|
3162
|
+
sourceSearchSelectedSource?: string;
|
|
3163
|
+
sourceSearchSelectedSourceType?: AgentSourceSearchResult["sourceType"];
|
|
3164
|
+
sourceSearchSelectedSourceHints?: string[];
|
|
3165
|
+
sourceSearchSelectedPath?: string;
|
|
3166
|
+
sourceSearchSelectedSnippet?: string;
|
|
3167
|
+
sourceSearchSelectedDateText?: string;
|
|
3168
|
+
sourceSearchSelectedDateIso?: string;
|
|
3169
|
+
sourceSearchSelectedDateUnixMs?: number;
|
|
3170
|
+
sourceSearchSelectedDatePrecision?: AgentSourceSearchResult["datePrecision"];
|
|
3171
|
+
sourceSearchSelectedDateSource?: AgentSourceSearchResult["dateSource"];
|
|
3172
|
+
sourceSearchSelectedMatchedTerm?: string;
|
|
3173
|
+
sourceSearchSelectedFindMatch?: string;
|
|
3174
|
+
sourceSearchSelectedSitelinkCount?: number;
|
|
3175
|
+
sourceSearchSelectedFirstSitelinkTitle?: string;
|
|
3176
|
+
sourceSearchSelectedFirstSitelinkUrl?: string;
|
|
3177
|
+
sourceSearchSelectedFirstSitelinkUrlPath?: string;
|
|
3178
|
+
sourceSearchSelectedFirstSitelinkUrlQuery?: string;
|
|
3179
|
+
sourceSearchSelectedFirstSitelinkSelector?: string;
|
|
3180
|
+
sourceSearchSelectedFirstSitelinkCommand?: string;
|
|
3181
|
+
sourceSearchSelectedFirstSitelinkCommandArgs?: string[];
|
|
3182
|
+
sourceSearchSelectedOpenResult?: number | "best";
|
|
3183
|
+
sourceSearchSelectedCommand?: string;
|
|
3184
|
+
sourceSearchSelectedCommandArgs?: string[];
|
|
3185
|
+
sourceSearchSelectedSourceScore?: number;
|
|
3186
|
+
sourceSearchSelectedRelevance?: AgentSourceSearchResult["relevance"];
|
|
3187
|
+
sourceSearchSelectedLikelyOfficial?: boolean;
|
|
3188
|
+
sourceSearchSelectedReason?: string;
|
|
3189
|
+
sourceSearchFailureCode?: string;
|
|
3190
|
+
sourceSearchFailureStatus?: number;
|
|
3191
|
+
sourceSearchFailureKind?: AgentSourceSearchFailureKind;
|
|
3192
|
+
sourceSearchFailureRetryable?: boolean;
|
|
3193
|
+
sourceSearchFailureRetryAfter?: string;
|
|
3194
|
+
sourceSearchFailurePath?: string;
|
|
3195
|
+
sourceSearchFailureUrl?: string;
|
|
3196
|
+
sourceSearchFailureUrlPath?: string;
|
|
3197
|
+
sourceSearchFailureUrlQuery?: string;
|
|
3198
|
+
sourceSearchFailureHost?: string;
|
|
3199
|
+
sourceSearchFailureReason?: string;
|
|
3200
|
+
sourceSearchFailureCommand?: string;
|
|
3201
|
+
sourceSearchFailureCommandArgs?: string[];
|
|
3202
|
+
sourceSearchAlternateCount?: number;
|
|
3203
|
+
sourceSearchAlternatePath?: string;
|
|
3204
|
+
sourceSearchAlternateTitle?: string;
|
|
3205
|
+
sourceSearchAlternateUrl?: string;
|
|
3206
|
+
sourceSearchAlternateUrlPath?: string;
|
|
3207
|
+
sourceSearchAlternateUrlQuery?: string;
|
|
3208
|
+
sourceSearchAlternateHost?: string;
|
|
3209
|
+
sourceSearchAlternateSource?: string;
|
|
3210
|
+
sourceSearchAlternateSourceType?: AgentSourceSearchResult["sourceType"];
|
|
3211
|
+
sourceSearchAlternateSourceHints?: string[];
|
|
3212
|
+
sourceSearchAlternateRank?: number;
|
|
3213
|
+
sourceSearchAlternateSnippet?: string;
|
|
3214
|
+
sourceSearchAlternateDateText?: string;
|
|
3215
|
+
sourceSearchAlternateDateIso?: string;
|
|
3216
|
+
sourceSearchAlternateDateUnixMs?: number;
|
|
3217
|
+
sourceSearchAlternateDatePrecision?: AgentSourceSearchResult["datePrecision"];
|
|
3218
|
+
sourceSearchAlternateDateSource?: AgentSourceSearchResult["dateSource"];
|
|
3219
|
+
sourceSearchAlternateMatchedTerm?: string;
|
|
3220
|
+
sourceSearchAlternateFindMatch?: string;
|
|
3221
|
+
sourceSearchAlternateSitelinkCount?: number;
|
|
3222
|
+
sourceSearchAlternateFirstSitelinkTitle?: string;
|
|
3223
|
+
sourceSearchAlternateFirstSitelinkUrl?: string;
|
|
3224
|
+
sourceSearchAlternateFirstSitelinkUrlPath?: string;
|
|
3225
|
+
sourceSearchAlternateFirstSitelinkUrlQuery?: string;
|
|
3226
|
+
sourceSearchAlternateFirstSitelinkSelector?: string;
|
|
3227
|
+
sourceSearchAlternateFirstSitelinkCommand?: string;
|
|
3228
|
+
sourceSearchAlternateFirstSitelinkCommandArgs?: string[];
|
|
3229
|
+
sourceSearchAlternateOpenResult?: number | "best";
|
|
3230
|
+
sourceSearchAlternateCommand?: string;
|
|
3231
|
+
sourceSearchAlternateCommandArgs?: string[];
|
|
3232
|
+
sourceSearchAlternateSourceScore?: number;
|
|
3233
|
+
sourceSearchAlternateRelevance?: AgentSourceSearchResult["relevance"];
|
|
3234
|
+
sourceSearchAlternateLikelyOfficial?: boolean;
|
|
3235
|
+
sourceSearchAlternateDifferentHost?: boolean;
|
|
3236
|
+
sourceSearchAlternateReason?: string;
|
|
3237
|
+
sourceSearchSecondAlternatePath?: string;
|
|
3238
|
+
sourceSearchSecondAlternateTitle?: string;
|
|
3239
|
+
sourceSearchSecondAlternateUrl?: string;
|
|
3240
|
+
sourceSearchSecondAlternateUrlPath?: string;
|
|
3241
|
+
sourceSearchSecondAlternateUrlQuery?: string;
|
|
3242
|
+
sourceSearchSecondAlternateHost?: string;
|
|
3243
|
+
sourceSearchSecondAlternateSource?: string;
|
|
3244
|
+
sourceSearchSecondAlternateSourceType?: AgentSourceSearchResult["sourceType"];
|
|
3245
|
+
sourceSearchSecondAlternateSourceHints?: string[];
|
|
3246
|
+
sourceSearchSecondAlternateRank?: number;
|
|
3247
|
+
sourceSearchSecondAlternateSnippet?: string;
|
|
3248
|
+
sourceSearchSecondAlternateDateText?: string;
|
|
3249
|
+
sourceSearchSecondAlternateDateIso?: string;
|
|
3250
|
+
sourceSearchSecondAlternateDateUnixMs?: number;
|
|
3251
|
+
sourceSearchSecondAlternateDatePrecision?: AgentSourceSearchResult["datePrecision"];
|
|
3252
|
+
sourceSearchSecondAlternateDateSource?: AgentSourceSearchResult["dateSource"];
|
|
3253
|
+
sourceSearchSecondAlternateMatchedTerm?: string;
|
|
3254
|
+
sourceSearchSecondAlternateFindMatch?: string;
|
|
3255
|
+
sourceSearchSecondAlternateSitelinkCount?: number;
|
|
3256
|
+
sourceSearchSecondAlternateFirstSitelinkTitle?: string;
|
|
3257
|
+
sourceSearchSecondAlternateFirstSitelinkUrl?: string;
|
|
3258
|
+
sourceSearchSecondAlternateFirstSitelinkUrlPath?: string;
|
|
3259
|
+
sourceSearchSecondAlternateFirstSitelinkUrlQuery?: string;
|
|
3260
|
+
sourceSearchSecondAlternateFirstSitelinkSelector?: string;
|
|
3261
|
+
sourceSearchSecondAlternateFirstSitelinkCommand?: string;
|
|
3262
|
+
sourceSearchSecondAlternateFirstSitelinkCommandArgs?: string[];
|
|
3263
|
+
sourceSearchSecondAlternateOpenResult?: number | "best";
|
|
3264
|
+
sourceSearchSecondAlternateCommand?: string;
|
|
3265
|
+
sourceSearchSecondAlternateCommandArgs?: string[];
|
|
3266
|
+
sourceSearchSecondAlternateSourceScore?: number;
|
|
3267
|
+
sourceSearchSecondAlternateRelevance?: AgentSourceSearchResult["relevance"];
|
|
3268
|
+
sourceSearchSecondAlternateLikelyOfficial?: boolean;
|
|
3269
|
+
sourceSearchSecondAlternateDifferentHost?: boolean;
|
|
3270
|
+
sourceSearchSecondAlternateReason?: string;
|
|
3271
|
+
sourceSearchAlternateChoices?: AgentSourceSearchResult[];
|
|
3272
|
+
evidenceQualityScore?: number;
|
|
3273
|
+
sourceQualityScore?: number;
|
|
3274
|
+
alternativeActionCount?: number;
|
|
3275
|
+
diagnosticCodes?: string[];
|
|
3276
|
+
diagnosticErrorCount?: number;
|
|
3277
|
+
diagnosticWarningCount?: number;
|
|
3278
|
+
diagnosticInfoCount?: number;
|
|
3279
|
+
topDiagnosticCode?: string;
|
|
3280
|
+
topDiagnosticSeverity?: "info" | "warning" | "error";
|
|
3281
|
+
topDiagnosticMessage?: string;
|
|
3282
|
+
citationCount?: number;
|
|
3283
|
+
citations?: AgentCitation[];
|
|
3284
|
+
topCitationId?: string;
|
|
3285
|
+
topCitationPath?: string;
|
|
3286
|
+
topCitationKind?: AgentCitation["kind"];
|
|
3287
|
+
topCitationText?: string;
|
|
3288
|
+
topCitationTitle?: string;
|
|
3289
|
+
topCitationUrl?: string;
|
|
3290
|
+
topCitationUrlPath?: string;
|
|
3291
|
+
topCitationUrlQuery?: string;
|
|
3292
|
+
topCitationCommand?: string;
|
|
3293
|
+
topCitationCommandArgs?: string[];
|
|
3294
|
+
topCitationConfidence?: AgentCitation["confidence"];
|
|
3295
|
+
topCitationReason?: string;
|
|
3296
|
+
topCitationScore?: number;
|
|
3297
|
+
secondCitationId?: string;
|
|
3298
|
+
secondCitationPath?: string;
|
|
3299
|
+
secondCitationKind?: AgentCitation["kind"];
|
|
3300
|
+
secondCitationText?: string;
|
|
3301
|
+
secondCitationTitle?: string;
|
|
3302
|
+
secondCitationUrl?: string;
|
|
3303
|
+
secondCitationUrlPath?: string;
|
|
3304
|
+
secondCitationUrlQuery?: string;
|
|
3305
|
+
secondCitationCommand?: string;
|
|
3306
|
+
secondCitationCommandArgs?: string[];
|
|
3307
|
+
secondCitationConfidence?: AgentCitation["confidence"];
|
|
3308
|
+
secondCitationReason?: string;
|
|
3309
|
+
secondCitationScore?: number;
|
|
3310
|
+
answerEvidenceCount?: number;
|
|
3311
|
+
answerEvidence?: AgentCitation[];
|
|
3312
|
+
topAnswerEvidenceId?: string;
|
|
3313
|
+
topAnswerEvidencePath?: string;
|
|
3314
|
+
topAnswerEvidenceKind?: AgentCitation["kind"];
|
|
3315
|
+
topAnswerEvidenceText?: string;
|
|
3316
|
+
topAnswerEvidenceTitle?: string;
|
|
3317
|
+
topAnswerEvidenceUrl?: string;
|
|
3318
|
+
topAnswerEvidenceUrlPath?: string;
|
|
3319
|
+
topAnswerEvidenceUrlQuery?: string;
|
|
3320
|
+
topAnswerEvidenceCommand?: string;
|
|
3321
|
+
topAnswerEvidenceCommandArgs?: string[];
|
|
3322
|
+
topAnswerEvidenceConfidence?: AgentCitation["confidence"];
|
|
3323
|
+
topAnswerEvidenceReason?: string;
|
|
3324
|
+
topAnswerEvidenceScore?: number;
|
|
3325
|
+
secondAnswerEvidenceId?: string;
|
|
3326
|
+
secondAnswerEvidencePath?: string;
|
|
3327
|
+
secondAnswerEvidenceKind?: AgentCitation["kind"];
|
|
3328
|
+
secondAnswerEvidenceText?: string;
|
|
3329
|
+
secondAnswerEvidenceTitle?: string;
|
|
3330
|
+
secondAnswerEvidenceUrl?: string;
|
|
3331
|
+
secondAnswerEvidenceUrlPath?: string;
|
|
3332
|
+
secondAnswerEvidenceUrlQuery?: string;
|
|
3333
|
+
secondAnswerEvidenceCommand?: string;
|
|
3334
|
+
secondAnswerEvidenceCommandArgs?: string[];
|
|
3335
|
+
secondAnswerEvidenceConfidence?: AgentCitation["confidence"];
|
|
3336
|
+
secondAnswerEvidenceReason?: string;
|
|
3337
|
+
secondAnswerEvidenceScore?: number;
|
|
3338
|
+
answerPlanStatus?: AgentAnswerPlan["status"];
|
|
3339
|
+
answerPlanConfidence?: AgentAnswerPlan["confidence"];
|
|
3340
|
+
answerPlanReason?: string;
|
|
3341
|
+
answerPlanNextAction?: string;
|
|
3342
|
+
answerGapCount?: number;
|
|
3343
|
+
answerUseCitationCount?: number;
|
|
3344
|
+
topAnswerUseCitationId?: string;
|
|
3345
|
+
answerUseCitationIds?: string[];
|
|
3346
|
+
answerPlanReadFrom?: string;
|
|
3347
|
+
answerPlanReadTargetKind?: AgentReadTarget["kind"];
|
|
3348
|
+
answerPlanReadTargetCount?: number;
|
|
3349
|
+
answerPlanReadTargetScore?: number;
|
|
3350
|
+
answerPlanReadTargetPrimary?: boolean;
|
|
3351
|
+
answerPlanReadTargetReason?: string;
|
|
3352
|
+
answerPlanCommand?: string;
|
|
3353
|
+
answerPlanCommandArgs?: string[];
|
|
3354
|
+
answerPlanAfterInteractionCommand?: string;
|
|
3355
|
+
answerPlanAfterInteractionCommandArgs?: string[];
|
|
3356
|
+
answerPlanUrl?: string;
|
|
3357
|
+
readTargetCount?: number;
|
|
3358
|
+
readTargets?: AgentReadTarget[];
|
|
3359
|
+
topReadTarget?: string;
|
|
3360
|
+
topReadTargetKind?: AgentReadTarget["kind"];
|
|
3361
|
+
topReadTargetCount?: number;
|
|
3362
|
+
topReadTargetScore?: number;
|
|
3363
|
+
topReadTargetPrimary?: boolean;
|
|
3364
|
+
topReadTargetReason?: string;
|
|
3365
|
+
secondReadTarget?: string;
|
|
3366
|
+
secondReadTargetKind?: AgentReadTarget["kind"];
|
|
3367
|
+
secondReadTargetCount?: number;
|
|
3368
|
+
secondReadTargetScore?: number;
|
|
3369
|
+
secondReadTargetPrimary?: boolean;
|
|
3370
|
+
secondReadTargetReason?: string;
|
|
3371
|
+
actionCount?: number;
|
|
3372
|
+
actions?: AgentAction[];
|
|
3373
|
+
topActionName?: string;
|
|
3374
|
+
topActionSource?: string;
|
|
3375
|
+
topActionExecution?: AgentAction["execution"];
|
|
3376
|
+
topActionPriority?: AgentAction["priority"];
|
|
3377
|
+
topActionPriorityReason?: string;
|
|
3378
|
+
topActionReason?: string;
|
|
3379
|
+
topActionReadFrom?: string;
|
|
3380
|
+
topActionReadTargetKind?: AgentReadTarget["kind"];
|
|
3381
|
+
topActionReadTargetCount?: number;
|
|
3382
|
+
topActionReadTargetScore?: number;
|
|
3383
|
+
topActionReadTargetPrimary?: boolean;
|
|
3384
|
+
topActionReadTargetReason?: string;
|
|
3385
|
+
topActionCommand?: string;
|
|
3386
|
+
topActionCommandArgs?: string[];
|
|
3387
|
+
topActionAfterInteractionCommand?: string;
|
|
3388
|
+
topActionAfterInteractionCommandArgs?: string[];
|
|
3389
|
+
topActionUrl?: string;
|
|
3390
|
+
topActionSourceLinkRef?: string;
|
|
3391
|
+
topActionRank?: number;
|
|
3392
|
+
topActionOpenResult?: number | "best";
|
|
3393
|
+
topActionExpectedOutcome?: AgentExpectedOutcome["kind"];
|
|
3394
|
+
topActionExpectedOutcomeMessage?: string;
|
|
3395
|
+
topActionTargetUrl?: string;
|
|
3396
|
+
topActionTargetUrlPath?: string;
|
|
3397
|
+
topActionTargetUrlQuery?: string;
|
|
3398
|
+
topActionTargetPath?: string;
|
|
3399
|
+
topActionTargetTitle?: string;
|
|
3400
|
+
topActionTargetHost?: string;
|
|
3401
|
+
topActionTargetSource?: string;
|
|
3402
|
+
topActionTargetRank?: number;
|
|
3403
|
+
topActionTargetSourceScore?: number;
|
|
3404
|
+
topActionTargetDateText?: string;
|
|
3405
|
+
topActionTargetDateIso?: string;
|
|
3406
|
+
topActionTargetDateUnixMs?: number;
|
|
3407
|
+
topActionTargetDatePrecision?: "day" | "month" | "year";
|
|
3408
|
+
topActionTargetDateSource?: "title" | "snippet";
|
|
3409
|
+
topActionTargetRelevance?: AgentTarget["relevance"];
|
|
3410
|
+
topActionTargetLikelyOfficial?: boolean;
|
|
3411
|
+
topActionTargetSelector?: string;
|
|
3412
|
+
topActionTargetText?: string;
|
|
3413
|
+
topActionRequiresBrowserInteraction?: boolean;
|
|
3414
|
+
topActionBrowserHtmlReason?: string;
|
|
3415
|
+
topActionBrowserHtmlReasonCode?: AgentBrowserHtmlReasonCode;
|
|
3416
|
+
bestReadTarget?: string;
|
|
3417
|
+
bestReadTargetKind?: AgentReadTarget["kind"];
|
|
3418
|
+
bestReadTargetCount?: number;
|
|
3419
|
+
bestReadTargetScore?: number;
|
|
3420
|
+
bestReadTargetPrimary?: boolean;
|
|
3421
|
+
bestReadTargetReason?: string;
|
|
3422
|
+
executorDecision?: AgentNext["loop"]["decision"];
|
|
3423
|
+
executorMode?: AgentContinuationMode;
|
|
3424
|
+
executorActionName?: string;
|
|
3425
|
+
executorOperation?: AgentExecutionPlan["operation"];
|
|
3426
|
+
executorConfidence?: AgentExecutionPlan["confidence"];
|
|
3427
|
+
executorAnswerReady?: boolean;
|
|
3428
|
+
executorShouldContinue?: boolean;
|
|
3429
|
+
executorTerminal?: boolean;
|
|
3430
|
+
executorCommand?: string;
|
|
3431
|
+
executorCommandArgs?: string[];
|
|
3432
|
+
executorAfterInteractionCommand?: string;
|
|
3433
|
+
executorAfterInteractionCommandArgs?: string[];
|
|
3434
|
+
executorReadFrom?: string;
|
|
3435
|
+
executorReadTargetKind?: AgentReadTarget["kind"];
|
|
3436
|
+
executorReadTargetCount?: number;
|
|
3437
|
+
executorReadTargetScore?: number;
|
|
3438
|
+
executorReadTargetPrimary?: boolean;
|
|
3439
|
+
executorReadTargetReason?: string;
|
|
3440
|
+
executorReadValuePath?: string;
|
|
3441
|
+
executorReadValueType?: AgentReadValueKind;
|
|
3442
|
+
executorReadValueCount?: number;
|
|
3443
|
+
executorReadValueReferencePath?: string;
|
|
3444
|
+
executorUrl?: string;
|
|
3445
|
+
executorTargetUrl?: string;
|
|
3446
|
+
executorTargetUrlPath?: string;
|
|
3447
|
+
executorTargetUrlQuery?: string;
|
|
3448
|
+
executorTargetPath?: string;
|
|
3449
|
+
executorTargetTitle?: string;
|
|
3450
|
+
executorTargetHost?: string;
|
|
3451
|
+
executorTargetSource?: string;
|
|
3452
|
+
executorTargetRank?: number;
|
|
3453
|
+
executorTargetSourceScore?: number;
|
|
3454
|
+
executorTargetDateText?: string;
|
|
3455
|
+
executorTargetDateIso?: string;
|
|
3456
|
+
executorTargetDateUnixMs?: number;
|
|
3457
|
+
executorTargetDatePrecision?: "day" | "month" | "year";
|
|
3458
|
+
executorTargetDateSource?: "title" | "snippet";
|
|
3459
|
+
executorTargetRelevance?: AgentTarget["relevance"];
|
|
3460
|
+
executorTargetLikelyOfficial?: boolean;
|
|
3461
|
+
executorTargetSelector?: string;
|
|
3462
|
+
executorTargetText?: string;
|
|
3463
|
+
executorExpectedOutcome?: AgentExpectedOutcome["kind"];
|
|
3464
|
+
executorBrowserHtmlReason?: string;
|
|
3465
|
+
executorBrowserHtmlReasonCode?: AgentBrowserHtmlReasonCode;
|
|
3466
|
+
handoffDecision?: AgentNext["loop"]["decision"];
|
|
3467
|
+
handoffMode?: AgentContinuationMode;
|
|
3468
|
+
handoffActionName?: string;
|
|
3469
|
+
handoffOperation?: AgentExecutionPlan["operation"];
|
|
3470
|
+
handoffAnswerStatus?: AgentAnswerPlan["status"];
|
|
3471
|
+
handoffConfidence?: AgentExecutionPlan["confidence"];
|
|
3472
|
+
handoffAnswerReady?: boolean;
|
|
3473
|
+
handoffShouldContinue?: boolean;
|
|
3474
|
+
handoffTerminal?: boolean;
|
|
3475
|
+
handoffPriority?: "low" | "medium" | "high";
|
|
3476
|
+
handoffPriorityReason?: string;
|
|
3477
|
+
handoffCommand?: string;
|
|
3478
|
+
handoffCommandArgs?: string[];
|
|
3479
|
+
handoffAfterInteractionCommand?: string;
|
|
3480
|
+
handoffAfterInteractionCommandArgs?: string[];
|
|
3481
|
+
handoffReadFrom?: string;
|
|
3482
|
+
handoffReadTargetKind?: AgentReadTarget["kind"];
|
|
3483
|
+
handoffReadTargetCount?: number;
|
|
3484
|
+
handoffReadTargetScore?: number;
|
|
3485
|
+
handoffReadTargetPrimary?: boolean;
|
|
3486
|
+
handoffReadTargetReason?: string;
|
|
3487
|
+
handoffReadValuePath?: string;
|
|
3488
|
+
handoffReadValueType?: AgentReadValueKind;
|
|
3489
|
+
handoffReadValueCount?: number;
|
|
3490
|
+
handoffReadValueReferencePath?: string;
|
|
3491
|
+
handoffUrl?: string;
|
|
3492
|
+
handoffTargetUrl?: string;
|
|
3493
|
+
handoffTargetUrlPath?: string;
|
|
3494
|
+
handoffTargetUrlQuery?: string;
|
|
3495
|
+
handoffTargetPath?: string;
|
|
3496
|
+
handoffTargetTitle?: string;
|
|
3497
|
+
handoffTargetHost?: string;
|
|
3498
|
+
handoffTargetSource?: string;
|
|
3499
|
+
handoffTargetRank?: number;
|
|
3500
|
+
handoffTargetSourceScore?: number;
|
|
3501
|
+
handoffTargetDateText?: string;
|
|
3502
|
+
handoffTargetDateIso?: string;
|
|
3503
|
+
handoffTargetDateUnixMs?: number;
|
|
3504
|
+
handoffTargetDatePrecision?: "day" | "month" | "year";
|
|
3505
|
+
handoffTargetDateSource?: "title" | "snippet";
|
|
3506
|
+
handoffTargetRelevance?: AgentTarget["relevance"];
|
|
3507
|
+
handoffTargetLikelyOfficial?: boolean;
|
|
3508
|
+
handoffTargetSelector?: string;
|
|
3509
|
+
handoffTargetText?: string;
|
|
3510
|
+
handoffExpectedOutcome?: AgentExpectedOutcome["kind"];
|
|
3511
|
+
handoffBrowserHtmlReason?: string;
|
|
3512
|
+
handoffBrowserHtmlReasonCode?: AgentBrowserHtmlReasonCode;
|
|
3513
|
+
primaryActionName?: string;
|
|
3514
|
+
primaryReason?: string;
|
|
3515
|
+
primaryPriority?: "low" | "medium" | "high";
|
|
3516
|
+
primaryPriorityReason?: string;
|
|
3517
|
+
primaryExecution?: AgentExecutionMode;
|
|
3518
|
+
primaryExpectedOutcome?: AgentExpectedOutcome["kind"];
|
|
3519
|
+
primaryExpectedOutcomeMessage?: string;
|
|
3520
|
+
primaryReadFrom?: string;
|
|
3521
|
+
primaryReadTargetKind?: AgentReadTarget["kind"];
|
|
3522
|
+
primaryReadTargetCount?: number;
|
|
3523
|
+
primaryReadTargetScore?: number;
|
|
3524
|
+
primaryReadTargetPrimary?: boolean;
|
|
3525
|
+
primaryReadTargetReason?: string;
|
|
3526
|
+
primaryCommand?: string;
|
|
3527
|
+
primaryCommandArgs?: string[];
|
|
3528
|
+
primaryAfterInteractionCommand?: string;
|
|
3529
|
+
primaryAfterInteractionCommandArgs?: string[];
|
|
3530
|
+
primaryBrowserHtmlReason?: string;
|
|
3531
|
+
primaryBrowserHtmlReasonCode?: AgentBrowserHtmlReasonCode;
|
|
3532
|
+
primaryUrl?: string;
|
|
3533
|
+
primarySourceLinkRef?: string;
|
|
3534
|
+
primaryRank?: number;
|
|
3535
|
+
primaryOpenResult?: number | "best";
|
|
3536
|
+
primaryTargetUrl?: string;
|
|
3537
|
+
primaryTargetUrlPath?: string;
|
|
3538
|
+
primaryTargetUrlQuery?: string;
|
|
3539
|
+
primaryTargetPath?: string;
|
|
3540
|
+
primaryTargetTitle?: string;
|
|
3541
|
+
primaryTargetHost?: string;
|
|
3542
|
+
primaryTargetSource?: string;
|
|
3543
|
+
primaryTargetRank?: number;
|
|
3544
|
+
primaryTargetSourceScore?: number;
|
|
3545
|
+
primaryTargetDateText?: string;
|
|
3546
|
+
primaryTargetDateIso?: string;
|
|
3547
|
+
primaryTargetDateUnixMs?: number;
|
|
3548
|
+
primaryTargetDatePrecision?: "day" | "month" | "year";
|
|
3549
|
+
primaryTargetDateSource?: "title" | "snippet";
|
|
3550
|
+
primaryTargetRelevance?: AgentTarget["relevance"];
|
|
3551
|
+
primaryTargetLikelyOfficial?: boolean;
|
|
3552
|
+
primaryTargetSelector?: string;
|
|
3553
|
+
primaryTargetText?: string;
|
|
3554
|
+
requiresBrowserInteraction?: boolean;
|
|
3555
|
+
primaryAction?: AgentAction;
|
|
3556
|
+
alternativeActionName?: string;
|
|
3557
|
+
alternativeActionSource?: string;
|
|
3558
|
+
alternativeActionExecution?: AgentExecutionMode;
|
|
3559
|
+
alternativeActionExpectedOutcome?: AgentExpectedOutcome["kind"];
|
|
3560
|
+
alternativeActionExpectedOutcomeMessage?: string;
|
|
3561
|
+
alternativeActionPriority?: "low" | "medium" | "high";
|
|
3562
|
+
alternativeActionPriorityReason?: string;
|
|
3563
|
+
alternativeActionReason?: string;
|
|
3564
|
+
alternativeActionReadFrom?: string;
|
|
3565
|
+
alternativeActionReadTargetKind?: AgentReadTarget["kind"];
|
|
3566
|
+
alternativeActionReadTargetCount?: number;
|
|
3567
|
+
alternativeActionReadTargetScore?: number;
|
|
3568
|
+
alternativeActionReadTargetPrimary?: boolean;
|
|
3569
|
+
alternativeActionReadTargetReason?: string;
|
|
3570
|
+
alternativeActionCommand?: string;
|
|
3571
|
+
alternativeActionCommandArgs?: string[];
|
|
3572
|
+
alternativeActionAfterInteractionCommand?: string;
|
|
3573
|
+
alternativeActionAfterInteractionCommandArgs?: string[];
|
|
3574
|
+
alternativeActionUrl?: string;
|
|
3575
|
+
alternativeActionSourceLinkRef?: string;
|
|
3576
|
+
alternativeActionRank?: number;
|
|
3577
|
+
alternativeActionOpenResult?: number | "best";
|
|
3578
|
+
alternativeActionTargetUrl?: string;
|
|
3579
|
+
alternativeActionTargetPath?: string;
|
|
3580
|
+
alternativeActionTargetTitle?: string;
|
|
3581
|
+
alternativeActionTargetHost?: string;
|
|
3582
|
+
alternativeActionTargetSource?: string;
|
|
3583
|
+
alternativeActionTargetRank?: number;
|
|
3584
|
+
alternativeActionTargetSourceScore?: number;
|
|
3585
|
+
alternativeActionTargetDateText?: string;
|
|
3586
|
+
alternativeActionTargetDateIso?: string;
|
|
3587
|
+
alternativeActionTargetDateUnixMs?: number;
|
|
3588
|
+
alternativeActionTargetDatePrecision?: "day" | "month" | "year";
|
|
3589
|
+
alternativeActionTargetDateSource?: "title" | "snippet";
|
|
3590
|
+
alternativeActionTargetRelevance?: AgentTarget["relevance"];
|
|
3591
|
+
alternativeActionTargetLikelyOfficial?: boolean;
|
|
3592
|
+
alternativeActionTargetSelector?: string;
|
|
3593
|
+
alternativeActionTargetText?: string;
|
|
3594
|
+
alternativeActionRequiresBrowserInteraction?: boolean;
|
|
3595
|
+
alternativeActionBrowserHtmlReason?: string;
|
|
3596
|
+
alternativeActionBrowserHtmlReasonCode?: AgentBrowserHtmlReasonCode;
|
|
3597
|
+
recommendedUrl?: string;
|
|
3598
|
+
recommendedUrlPath?: string;
|
|
3599
|
+
recommendedUrlQuery?: string;
|
|
3600
|
+
recommendedPath?: string;
|
|
3601
|
+
recommendedTitle?: string;
|
|
3602
|
+
recommendedRank?: number;
|
|
3603
|
+
recommendedSource?: string;
|
|
3604
|
+
recommendedSourceScore?: number;
|
|
3605
|
+
recommendedSourceType?: AgentTarget["sourceType"];
|
|
3606
|
+
recommendedSourceHints?: string[];
|
|
3607
|
+
recommendedDateText?: string;
|
|
3608
|
+
recommendedDateIso?: string;
|
|
3609
|
+
recommendedDateUnixMs?: number;
|
|
3610
|
+
recommendedDatePrecision?: "day" | "month" | "year";
|
|
3611
|
+
recommendedDateSource?: "title" | "snippet";
|
|
3612
|
+
recommendedRelevance?: AgentTarget["relevance"];
|
|
3613
|
+
recommendedLikelyOfficial?: boolean;
|
|
3614
|
+
recommendedSelectionReason?: string;
|
|
3615
|
+
recommendedCommand?: string;
|
|
3616
|
+
recommendedCommandArgs?: string[];
|
|
3617
|
+
};
|
|
3618
|
+
type AgentContractFeature = "next.loop" | "next.readTarget" | "next.readValue" | "next.target" | "readValue.shortcuts" | "readValue.referencePaths" | "runbook" | "runbook.shortcuts" | "executor" | "handoff" | "handoff.answerEvidence" | "handoff.choices" | "handoff.sourceSearch" | "handoff.quality" | "executionPlan" | "executionPlan.shortcuts" | "citations" | "citation.reason" | "answerPlan" | "answerEvidence" | "answerPlan.actionFields" | "answerPlan.confidence" | "verification.queries" | "searchDecision" | "choice.counts" | "evidence.counts" | "signal.counts" | "quality.shortcuts" | "diagnostics.shortcuts" | "resultChoices" | "sourceChoices" | "formChoices" | "actionTargetChoices" | "text.shortcuts" | "sourceSearch.shortcuts" | "pageDecision" | "pageMetadata.shortcuts" | "semanticSummary" | "semantic.shortcuts" | "citation.shortcuts" | "answerEvidence.shortcuts" | "searchResult.selectionReason" | "sourceLink.selectionReason" | "action.priority" | "action.sourceLinkRef" | "actions" | "contentEvidence.quality" | "pageCheck.dataTables" | "pageCheck.barriers" | "pageCheck.forms" | "pageCheck.actionTargets" | "pageCheck.hydration" | "pageCheck.apiEndpoints" | "pageCheck.clientState" | "pageCheck.runtime" | "pageCheck.config" | "pageCheck.appHints" | "pageCheck.mobileHints" | "pageCheck.topics" | "pageCheck.keyValues" | "pageCheck.metaFacts" | "pageCheck.provenance" | "pageCheck.httpPolicies" | "pageCheck.schemaFacts" | "pageCheck.offers" | "pageCheck.identities" | "pageCheck.datasets" | "pageCheck.timeline" | "pageCheck.contactPoints" | "pageCheck.faqs" | "pageCheck.breadcrumbs" | "pageCheck.sections" | "pageCheck.pagination" | "pageCheck.toc" | "pageCheck.codeBlocks" | "pageCheck.citations" | "pageCheck.media" | "pageCheck.resources" | "pageCheck.embeds" | "pageCheck.transcripts" | "pageCheck.authorLinks" | "readTargets" | "signals" | "qualityGates" | "expectedOutcome" | "responseMetadata" | "hiddenSignal.shortcuts" | "afterInteractionCommand" | "browserHtml" | "browserHtml.shortcuts" | "browserHtml.reasonCodes" | "executor.browserHtml.shortcuts" | "handoff.browserHtml.shortcuts" | "primaryActionShortcuts" | "alternativeActionShortcuts" | "barrierShortcuts";
|
|
3619
|
+
type AgentContract = {
|
|
3620
|
+
version: number;
|
|
3621
|
+
features: AgentContractFeature[];
|
|
3622
|
+
};
|
|
3623
|
+
type AgentJsonEnvelope = {
|
|
3624
|
+
schemaVersion: number;
|
|
3625
|
+
tool: "ax-grep";
|
|
3626
|
+
ok: boolean;
|
|
3627
|
+
url?: string;
|
|
3628
|
+
finalUrl?: string;
|
|
3629
|
+
status?: number;
|
|
3630
|
+
contentType?: string;
|
|
3631
|
+
fetchedAt?: string;
|
|
3632
|
+
mode?: string;
|
|
3633
|
+
kind?: string;
|
|
3634
|
+
searchQuery?: string;
|
|
3635
|
+
searchEngine?: string;
|
|
3636
|
+
selectedSearchEngine?: string;
|
|
3637
|
+
searchLang?: string;
|
|
3638
|
+
searchRegion?: string;
|
|
3639
|
+
sourceSearch?: AgentSourceSearch;
|
|
3640
|
+
warnings?: Array<{
|
|
3641
|
+
code: string;
|
|
3642
|
+
message: string;
|
|
3643
|
+
}>;
|
|
3644
|
+
agent: AgentSummary;
|
|
3645
|
+
page?: AgentPageMetadata;
|
|
3646
|
+
pageCheck?: AgentPageCheck;
|
|
3647
|
+
verification?: AgentVerification;
|
|
3648
|
+
finds?: AgentFindSummary[];
|
|
3649
|
+
searchResults?: AgentResultChoice[];
|
|
3650
|
+
recommendedResult?: AgentResultChoice;
|
|
3651
|
+
suggestedActions?: AgentAction[];
|
|
3652
|
+
error?: {
|
|
3653
|
+
code: string;
|
|
3654
|
+
message: string;
|
|
3655
|
+
status?: number;
|
|
3656
|
+
};
|
|
3657
|
+
treeOmitted?: boolean;
|
|
3658
|
+
};
|
|
3659
|
+
|
|
3660
|
+
export type { AgentPageMobileHint as $, AgentAction as A, AgentPageBarrier as B, AgentPageBreadcrumb as C, AgentPageBreadcrumbItem as D, ExtractorScriptOptions as E, AgentPageCheck as F, AgentPageCitation as G, AgentPageClientState as H, AgentPageCodeBlock as I, AgentPageConfig as J, AgentPageContactPoint as K, AgentPageDataTable as L, AgentPageDataset as M, AgentPageDecision as N, ObserverScriptOptions as O, AgentPageEmbed as P, AgentPageEvidence as Q, AgentPageFaq as R, SemanticNode as S, AgentPageForm as T, AgentPageHttpPolicy as U, AgentPageHydration as V, AgentPageIdentity as W, AgentPageKeyValue as X, AgentPageMedia as Y, AgentPageMetaFact as Z, AgentPageMetadata as _, SemanticTreeOptions as a, AgentPageOffer as a0, AgentPagePagination as a1, AgentPageProvenance as a2, AgentPageResource as a3, AgentPageRuntime as a4, AgentPageSchemaFact as a5, AgentPageSchemaFactValue as a6, AgentPageSection as a7, AgentPageTimeline as a8, AgentPageToc as a9, ExtractMode as aA, OutputFormat as aB, SemanticNodeBounds as aC, SemanticNodeState as aD, SemanticTreeChange as aE, SemanticTreeObserverOptions as aF, AgentPageTocItem as aa, AgentPageTopic as ab, AgentPageTranscript as ac, AgentQualityGate as ad, AgentQualityGateKind as ae, AgentReadTarget as af, AgentReadValue as ag, AgentReadValueInline as ah, AgentReadValueKind as ai, AgentReadValuePayload as aj, AgentReadValueReference as ak, AgentReadValueScalar as al, AgentResultChoice as am, AgentRoutingIntent as an, AgentSearchDecision as ao, AgentSemanticSummary as ap, AgentSignal as aq, AgentSignalKind as ar, AgentSignalSeverity as as, AgentSourceChoice as at, AgentSourceSearch as au, AgentSourceSearchResult as av, AgentStatus as aw, AgentSummary as ax, AgentTarget as ay, AgentVerification as az, AgentActionTargetChoice as b, AgentAnswerPlan as c, AgentBrowserHtmlCapture as d, AgentCitation as e, AgentContinuationMode as f, AgentContract as g, AgentContractFeature as h, AgentExecutionMode as i, AgentExecutorStep as j, AgentExpectedOutcome as k, AgentExpectedOutcomeKind as l, AgentFindMatch as m, AgentFindSummary as n, AgentFormChoice as o, AgentFormField as p, AgentFormHiddenField as q, AgentHandoff as r, AgentJsonEnvelope as s, AgentLoopDecision as t, AgentLoopDirective as u, AgentNext as v, AgentPageAction as w, AgentPageApiEndpoint as x, AgentPageAppHint as y, AgentPageAuthorLink as z };
|