opendevbrowser 0.0.21 → 0.0.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -3
- package/dist/{chunk-4KVXCXV3.js → chunk-2MG7BRPF.js} +521 -84
- package/dist/{chunk-4KVXCXV3.js.map → chunk-2MG7BRPF.js.map} +1 -1
- package/dist/chunk-3ILXPKSJ.js +86 -0
- package/dist/chunk-3ILXPKSJ.js.map +1 -0
- package/dist/{chunk-ZE2E7ZGH.js → chunk-K2TEHJCV.js} +240 -33
- package/dist/chunk-K2TEHJCV.js.map +1 -0
- package/dist/chunk-QVWOPIZJ.js +612 -0
- package/dist/chunk-QVWOPIZJ.js.map +1 -0
- package/dist/{chunk-3VA6XR25.js → chunk-STGGGVYT.js} +23 -100
- package/dist/chunk-STGGGVYT.js.map +1 -0
- package/dist/cli/commands/macro-resolve.d.ts.map +1 -1
- package/dist/cli/commands/uninstall.d.ts +1 -0
- package/dist/cli/commands/uninstall.d.ts.map +1 -1
- package/dist/cli/daemon-commands.d.ts.map +1 -1
- package/dist/cli/help.d.ts.map +1 -1
- package/dist/cli/index.js +298 -618
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/installers/postinstall-skill-sync.d.ts +15 -0
- package/dist/cli/installers/postinstall-skill-sync.d.ts.map +1 -0
- package/dist/cli/installers/postinstall-skill-sync.js +48 -0
- package/dist/cli/installers/postinstall-skill-sync.js.map +1 -0
- package/dist/cli/installers/skills.d.ts +9 -14
- package/dist/cli/installers/skills.d.ts.map +1 -1
- package/dist/cli/skill-lifecycle.d.ts +26 -0
- package/dist/cli/skill-lifecycle.d.ts.map +1 -0
- package/dist/cli/update-skill-modes.d.ts +3 -0
- package/dist/cli/update-skill-modes.d.ts.map +1 -0
- package/dist/cli/utils/workflow-message.d.ts +1 -0
- package/dist/cli/utils/workflow-message.d.ts.map +1 -1
- package/dist/index.js +25 -9
- package/dist/index.js.map +1 -1
- package/dist/opendevbrowser.js +25 -9
- package/dist/opendevbrowser.js.map +1 -1
- package/dist/providers/social/platform.d.ts.map +1 -1
- package/dist/providers/social/search-quality.d.ts.map +1 -1
- package/dist/providers/social/youtube.d.ts.map +1 -1
- package/dist/providers/workflow-handoff.d.ts +27 -3
- package/dist/providers/workflow-handoff.d.ts.map +1 -1
- package/dist/providers/workflows.d.ts +1 -0
- package/dist/providers/workflows.d.ts.map +1 -1
- package/dist/{providers-ZIVHHH4F.js → providers-6YVHKTOJ.js} +2 -2
- package/dist/public-surface/generated-manifest.d.ts +162 -4
- package/dist/public-surface/generated-manifest.d.ts.map +1 -1
- package/dist/public-surface/source.d.ts +12 -6
- package/dist/public-surface/source.d.ts.map +1 -1
- package/dist/skills/skill-loader.js +2 -1
- package/dist/tools/macro_resolve.d.ts.map +1 -1
- package/extension/manifest.json +1 -1
- package/package.json +6 -4
- package/scripts/postinstall-sync-skills.mjs +33 -0
- package/dist/chunk-3VA6XR25.js.map +0 -1
- package/dist/chunk-ZE2E7ZGH.js.map +0 -1
- /package/dist/{providers-ZIVHHH4F.js.map → providers-6YVHKTOJ.js.map} +0 -0
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import type { CommandHelpDetail, PublicSurfaceCliCommandGroupDefinition, PublicSurfaceCliCommandName, PublicSurfaceFlagName, ToolSurfaceEntry } from "./source";
|
|
6
6
|
export declare const PUBLIC_SURFACE_MANIFEST_SCHEMA_VERSION: "2026-04-04";
|
|
7
|
-
export declare const PUBLIC_SURFACE_MANIFEST_GENERATED_AT: "2026-04-
|
|
7
|
+
export declare const PUBLIC_SURFACE_MANIFEST_GENERATED_AT: "2026-04-20T16:29:04.426Z";
|
|
8
8
|
export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
9
9
|
schemaVersion: string;
|
|
10
10
|
generatedAt: string;
|
|
@@ -28,7 +28,7 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
28
28
|
id: string;
|
|
29
29
|
title: string;
|
|
30
30
|
summary: string;
|
|
31
|
-
commands: ("research" | "shopping" | "inspiredesign" | "
|
|
31
|
+
commands: ("research" | "shopping" | "inspiredesign" | "macro-resolve" | "product-video" | "artifacts")[];
|
|
32
32
|
} | {
|
|
33
33
|
id: string;
|
|
34
34
|
title: string;
|
|
@@ -80,6 +80,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
80
80
|
description: string;
|
|
81
81
|
usage: string;
|
|
82
82
|
flags: ("--global" | "--local" | "--with-config" | "--no-prompt" | "--quiet" | "--full" | "--skills-global" | "--skills-local" | "--no-skills")[];
|
|
83
|
+
examples: string[];
|
|
84
|
+
notes: never[];
|
|
83
85
|
groupId: string;
|
|
84
86
|
groupTitle: string;
|
|
85
87
|
groupSummary: string;
|
|
@@ -87,7 +89,9 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
87
89
|
name: "update";
|
|
88
90
|
description: string;
|
|
89
91
|
usage: string;
|
|
90
|
-
flags: ("--global" | "--local")[];
|
|
92
|
+
flags: ("--global" | "--local" | "--skills-global" | "--skills-local" | "--no-skills")[];
|
|
93
|
+
examples: string[];
|
|
94
|
+
notes: never[];
|
|
91
95
|
groupId: string;
|
|
92
96
|
groupTitle: string;
|
|
93
97
|
groupSummary: string;
|
|
@@ -95,7 +99,9 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
95
99
|
name: "uninstall";
|
|
96
100
|
description: string;
|
|
97
101
|
usage: string;
|
|
98
|
-
flags: ("--global" | "--local" | "--no-prompt" | "--quiet")[];
|
|
102
|
+
flags: ("--global" | "--local" | "--no-prompt" | "--quiet" | "--no-skills")[];
|
|
103
|
+
examples: string[];
|
|
104
|
+
notes: never[];
|
|
99
105
|
groupId: string;
|
|
100
106
|
groupTitle: string;
|
|
101
107
|
groupSummary: string;
|
|
@@ -104,6 +110,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
104
110
|
description: string;
|
|
105
111
|
usage: string;
|
|
106
112
|
flags: "--help"[];
|
|
113
|
+
examples: string[];
|
|
114
|
+
notes: string[];
|
|
107
115
|
groupId: string;
|
|
108
116
|
groupTitle: string;
|
|
109
117
|
groupSummary: string;
|
|
@@ -112,6 +120,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
112
120
|
description: string;
|
|
113
121
|
usage: string;
|
|
114
122
|
flags: "--version"[];
|
|
123
|
+
examples: string[];
|
|
124
|
+
notes: never[];
|
|
115
125
|
groupId: string;
|
|
116
126
|
groupTitle: string;
|
|
117
127
|
groupSummary: string;
|
|
@@ -120,6 +130,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
120
130
|
description: string;
|
|
121
131
|
usage: string;
|
|
122
132
|
flags: ("--port" | "--token" | "--stop")[];
|
|
133
|
+
examples: string[];
|
|
134
|
+
notes: never[];
|
|
123
135
|
groupId: string;
|
|
124
136
|
groupTitle: string;
|
|
125
137
|
groupSummary: string;
|
|
@@ -128,6 +140,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
128
140
|
description: string;
|
|
129
141
|
usage: string;
|
|
130
142
|
flags: "--output-format"[];
|
|
143
|
+
examples: string[];
|
|
144
|
+
notes: never[];
|
|
131
145
|
groupId: string;
|
|
132
146
|
groupTitle: string;
|
|
133
147
|
groupSummary: string;
|
|
@@ -136,6 +150,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
136
150
|
description: string;
|
|
137
151
|
usage: string;
|
|
138
152
|
flags: "--output-format"[];
|
|
153
|
+
examples: string[];
|
|
154
|
+
notes: never[];
|
|
139
155
|
groupId: string;
|
|
140
156
|
groupTitle: string;
|
|
141
157
|
groupSummary: string;
|
|
@@ -144,6 +160,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
144
160
|
description: string;
|
|
145
161
|
usage: string;
|
|
146
162
|
flags: ("--script" | "--headless" | "--profile" | "--persist-profile" | "--chrome-path" | "--start-url" | "--flag")[];
|
|
163
|
+
examples: string[];
|
|
164
|
+
notes: string[];
|
|
147
165
|
groupId: string;
|
|
148
166
|
groupTitle: string;
|
|
149
167
|
groupSummary: string;
|
|
@@ -152,6 +170,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
152
170
|
description: string;
|
|
153
171
|
usage: string;
|
|
154
172
|
flags: ("--headless" | "--profile" | "--persist-profile" | "--chrome-path" | "--start-url" | "--flag" | "--no-extension" | "--extension-only" | "--extension-legacy" | "--wait-for-extension" | "--wait-timeout-ms")[];
|
|
173
|
+
examples: string[];
|
|
174
|
+
notes: string[];
|
|
155
175
|
groupId: string;
|
|
156
176
|
groupTitle: string;
|
|
157
177
|
groupSummary: string;
|
|
@@ -160,6 +180,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
160
180
|
description: string;
|
|
161
181
|
usage: string;
|
|
162
182
|
flags: ("--start-url" | "--ws-endpoint" | "--host" | "--cdp-port" | "--extension-legacy")[];
|
|
183
|
+
examples: string[];
|
|
184
|
+
notes: never[];
|
|
163
185
|
groupId: string;
|
|
164
186
|
groupTitle: string;
|
|
165
187
|
groupSummary: string;
|
|
@@ -168,6 +190,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
168
190
|
description: string;
|
|
169
191
|
usage: string;
|
|
170
192
|
flags: ("--session-id" | "--close-browser")[];
|
|
193
|
+
examples: string[];
|
|
194
|
+
notes: never[];
|
|
171
195
|
groupId: string;
|
|
172
196
|
groupTitle: string;
|
|
173
197
|
groupSummary: string;
|
|
@@ -176,6 +200,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
176
200
|
description: string;
|
|
177
201
|
usage: string;
|
|
178
202
|
flags: ("--session-id" | "--daemon" | "--transport")[];
|
|
203
|
+
examples: string[];
|
|
204
|
+
notes: never[];
|
|
179
205
|
groupId: string;
|
|
180
206
|
groupTitle: string;
|
|
181
207
|
groupSummary: string;
|
|
@@ -184,6 +210,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
184
210
|
description: string;
|
|
185
211
|
usage: string;
|
|
186
212
|
flags: ("--session-id" | "--timeout-ms" | "--target-id" | "--challenge-automation-mode")[];
|
|
213
|
+
examples: string[];
|
|
214
|
+
notes: never[];
|
|
187
215
|
groupId: string;
|
|
188
216
|
groupTitle: string;
|
|
189
217
|
groupSummary: string;
|
|
@@ -192,6 +220,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
192
220
|
description: string;
|
|
193
221
|
usage: string;
|
|
194
222
|
flags: ("--session-id" | "--cookies" | "--cookies-file" | "--strict")[];
|
|
223
|
+
examples: string[];
|
|
224
|
+
notes: never[];
|
|
195
225
|
groupId: string;
|
|
196
226
|
groupTitle: string;
|
|
197
227
|
groupSummary: string;
|
|
@@ -200,6 +230,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
200
230
|
description: string;
|
|
201
231
|
usage: string;
|
|
202
232
|
flags: ("--session-id" | "--url")[];
|
|
233
|
+
examples: string[];
|
|
234
|
+
notes: never[];
|
|
203
235
|
groupId: string;
|
|
204
236
|
groupTitle: string;
|
|
205
237
|
groupSummary: string;
|
|
@@ -208,6 +240,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
208
240
|
description: string;
|
|
209
241
|
usage: string;
|
|
210
242
|
flags: ("--timeout-ms" | "--mode" | "--topic" | "--days" | "--from" | "--to" | "--source-selection" | "--sources" | "--include-engagement" | "--limit-per-source" | "--use-cookies" | "--challenge-automation-mode" | "--cookie-policy-override" | "--cookie-policy" | "--output-dir" | "--ttl-hours")[];
|
|
243
|
+
examples: string[];
|
|
244
|
+
notes: string[];
|
|
211
245
|
groupId: string;
|
|
212
246
|
groupTitle: string;
|
|
213
247
|
groupSummary: string;
|
|
@@ -216,6 +250,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
216
250
|
description: string;
|
|
217
251
|
usage: string;
|
|
218
252
|
flags: ("--timeout-ms" | "--mode" | "--query" | "--providers" | "--budget" | "--region" | "--browser-mode" | "--sort" | "--use-cookies" | "--challenge-automation-mode" | "--cookie-policy-override" | "--cookie-policy" | "--output-dir" | "--ttl-hours")[];
|
|
253
|
+
examples: string[];
|
|
254
|
+
notes: string[];
|
|
219
255
|
groupId: string;
|
|
220
256
|
groupTitle: string;
|
|
221
257
|
groupSummary: string;
|
|
@@ -224,6 +260,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
224
260
|
description: string;
|
|
225
261
|
usage: string;
|
|
226
262
|
flags: ("--timeout-ms" | "--product-url" | "--product-name" | "--provider-hint" | "--include-screenshots" | "--include-all-images" | "--include-copy" | "--use-cookies" | "--challenge-automation-mode" | "--cookie-policy-override" | "--cookie-policy" | "--output-dir" | "--ttl-hours")[];
|
|
263
|
+
examples: string[];
|
|
264
|
+
notes: string[];
|
|
227
265
|
groupId: string;
|
|
228
266
|
groupTitle: string;
|
|
229
267
|
groupSummary: string;
|
|
@@ -232,6 +270,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
232
270
|
description: string;
|
|
233
271
|
usage: string;
|
|
234
272
|
flags: ("--url" | "--timeout-ms" | "--mode" | "--brief" | "--capture-mode" | "--include-prototype-guidance" | "--use-cookies" | "--challenge-automation-mode" | "--cookie-policy-override" | "--cookie-policy" | "--output-dir" | "--ttl-hours")[];
|
|
273
|
+
examples: string[];
|
|
274
|
+
notes: string[];
|
|
235
275
|
groupId: string;
|
|
236
276
|
groupTitle: string;
|
|
237
277
|
groupSummary: string;
|
|
@@ -240,6 +280,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
240
280
|
description: string;
|
|
241
281
|
usage: string;
|
|
242
282
|
flags: ("--output-dir" | "--expired-only")[];
|
|
283
|
+
examples: string[];
|
|
284
|
+
notes: never[];
|
|
243
285
|
groupId: string;
|
|
244
286
|
groupTitle: string;
|
|
245
287
|
groupSummary: string;
|
|
@@ -248,6 +290,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
248
290
|
description: string;
|
|
249
291
|
usage: string;
|
|
250
292
|
flags: ("--timeout-ms" | "--expression" | "--default-provider" | "--include-catalog" | "--execute" | "--challenge-automation-mode")[];
|
|
293
|
+
examples: string[];
|
|
294
|
+
notes: string[];
|
|
251
295
|
groupId: string;
|
|
252
296
|
groupTitle: string;
|
|
253
297
|
groupSummary: string;
|
|
@@ -256,6 +300,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
256
300
|
description: string;
|
|
257
301
|
usage: string;
|
|
258
302
|
flags: ("--timeout-ms" | "--command" | "--params" | "--params-file")[];
|
|
303
|
+
examples: string[];
|
|
304
|
+
notes: string[];
|
|
259
305
|
groupId: string;
|
|
260
306
|
groupTitle: string;
|
|
261
307
|
groupSummary: string;
|
|
@@ -264,6 +310,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
264
310
|
description: string;
|
|
265
311
|
usage: string;
|
|
266
312
|
flags: ("--session-id" | "--url" | "--wait-until" | "--timeout-ms")[];
|
|
313
|
+
examples: string[];
|
|
314
|
+
notes: never[];
|
|
267
315
|
groupId: string;
|
|
268
316
|
groupTitle: string;
|
|
269
317
|
groupSummary: string;
|
|
@@ -272,6 +320,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
272
320
|
description: string;
|
|
273
321
|
usage: string;
|
|
274
322
|
flags: ("--session-id" | "--timeout-ms" | "--ref" | "--state" | "--until")[];
|
|
323
|
+
examples: string[];
|
|
324
|
+
notes: never[];
|
|
275
325
|
groupId: string;
|
|
276
326
|
groupTitle: string;
|
|
277
327
|
groupSummary: string;
|
|
@@ -280,6 +330,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
280
330
|
description: string;
|
|
281
331
|
usage: string;
|
|
282
332
|
flags: ("--session-id" | "--timeout-ms" | "--mode" | "--max-chars" | "--cursor")[];
|
|
333
|
+
examples: string[];
|
|
334
|
+
notes: never[];
|
|
283
335
|
groupId: string;
|
|
284
336
|
groupTitle: string;
|
|
285
337
|
groupSummary: string;
|
|
@@ -288,6 +340,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
288
340
|
description: string;
|
|
289
341
|
usage: string;
|
|
290
342
|
flags: ("--session-id" | "--timeout-ms" | "--max-chars" | "--cursor" | "--target-id")[];
|
|
343
|
+
examples: string[];
|
|
344
|
+
notes: never[];
|
|
291
345
|
groupId: string;
|
|
292
346
|
groupTitle: string;
|
|
293
347
|
groupSummary: string;
|
|
@@ -296,6 +350,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
296
350
|
description: string;
|
|
297
351
|
usage: string;
|
|
298
352
|
flags: ("--session-id" | "--timeout-ms" | "--max-chars" | "--cursor" | "--target-id" | "--reason")[];
|
|
353
|
+
examples: string[];
|
|
354
|
+
notes: never[];
|
|
299
355
|
groupId: string;
|
|
300
356
|
groupTitle: string;
|
|
301
357
|
groupSummary: string;
|
|
@@ -304,6 +360,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
304
360
|
description: string;
|
|
305
361
|
usage: string;
|
|
306
362
|
flags: ("--session-id" | "--timeout-ms" | "--ref" | "--target-id")[];
|
|
363
|
+
examples: string[];
|
|
364
|
+
notes: never[];
|
|
307
365
|
groupId: string;
|
|
308
366
|
groupTitle: string;
|
|
309
367
|
groupSummary: string;
|
|
@@ -312,6 +370,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
312
370
|
description: string;
|
|
313
371
|
usage: string;
|
|
314
372
|
flags: ("--session-id" | "--ref")[];
|
|
373
|
+
examples: string[];
|
|
374
|
+
notes: never[];
|
|
315
375
|
groupId: string;
|
|
316
376
|
groupTitle: string;
|
|
317
377
|
groupSummary: string;
|
|
@@ -320,6 +380,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
320
380
|
description: string;
|
|
321
381
|
usage: string;
|
|
322
382
|
flags: ("--session-id" | "--ref" | "--key")[];
|
|
383
|
+
examples: string[];
|
|
384
|
+
notes: never[];
|
|
323
385
|
groupId: string;
|
|
324
386
|
groupTitle: string;
|
|
325
387
|
groupSummary: string;
|
|
@@ -328,6 +390,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
328
390
|
description: string;
|
|
329
391
|
usage: string;
|
|
330
392
|
flags: ("--session-id" | "--ref")[];
|
|
393
|
+
examples: string[];
|
|
394
|
+
notes: never[];
|
|
331
395
|
groupId: string;
|
|
332
396
|
groupTitle: string;
|
|
333
397
|
groupSummary: string;
|
|
@@ -336,6 +400,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
336
400
|
description: string;
|
|
337
401
|
usage: string;
|
|
338
402
|
flags: ("--session-id" | "--ref")[];
|
|
403
|
+
examples: string[];
|
|
404
|
+
notes: never[];
|
|
339
405
|
groupId: string;
|
|
340
406
|
groupTitle: string;
|
|
341
407
|
groupSummary: string;
|
|
@@ -344,6 +410,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
344
410
|
description: string;
|
|
345
411
|
usage: string;
|
|
346
412
|
flags: ("--session-id" | "--ref" | "--text" | "--clear" | "--submit")[];
|
|
413
|
+
examples: string[];
|
|
414
|
+
notes: never[];
|
|
347
415
|
groupId: string;
|
|
348
416
|
groupTitle: string;
|
|
349
417
|
groupSummary: string;
|
|
@@ -352,6 +420,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
352
420
|
description: string;
|
|
353
421
|
usage: string;
|
|
354
422
|
flags: ("--session-id" | "--ref" | "--values")[];
|
|
423
|
+
examples: string[];
|
|
424
|
+
notes: never[];
|
|
355
425
|
groupId: string;
|
|
356
426
|
groupTitle: string;
|
|
357
427
|
groupSummary: string;
|
|
@@ -360,6 +430,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
360
430
|
description: string;
|
|
361
431
|
usage: string;
|
|
362
432
|
flags: ("--session-id" | "--ref" | "--dy")[];
|
|
433
|
+
examples: string[];
|
|
434
|
+
notes: never[];
|
|
363
435
|
groupId: string;
|
|
364
436
|
groupTitle: string;
|
|
365
437
|
groupSummary: string;
|
|
@@ -368,6 +440,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
368
440
|
description: string;
|
|
369
441
|
usage: string;
|
|
370
442
|
flags: ("--session-id" | "--ref")[];
|
|
443
|
+
examples: string[];
|
|
444
|
+
notes: never[];
|
|
371
445
|
groupId: string;
|
|
372
446
|
groupTitle: string;
|
|
373
447
|
groupSummary: string;
|
|
@@ -376,6 +450,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
376
450
|
description: string;
|
|
377
451
|
usage: string;
|
|
378
452
|
flags: ("--session-id" | "--ref" | "--files" | "--target-id")[];
|
|
453
|
+
examples: string[];
|
|
454
|
+
notes: never[];
|
|
379
455
|
groupId: string;
|
|
380
456
|
groupTitle: string;
|
|
381
457
|
groupSummary: string;
|
|
@@ -384,6 +460,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
384
460
|
description: string;
|
|
385
461
|
usage: string;
|
|
386
462
|
flags: ("--session-id" | "--x" | "--y" | "--steps" | "--target-id")[];
|
|
463
|
+
examples: string[];
|
|
464
|
+
notes: never[];
|
|
387
465
|
groupId: string;
|
|
388
466
|
groupTitle: string;
|
|
389
467
|
groupSummary: string;
|
|
@@ -392,6 +470,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
392
470
|
description: string;
|
|
393
471
|
usage: string;
|
|
394
472
|
flags: ("--session-id" | "--x" | "--y" | "--button" | "--click-count" | "--target-id")[];
|
|
473
|
+
examples: string[];
|
|
474
|
+
notes: never[];
|
|
395
475
|
groupId: string;
|
|
396
476
|
groupTitle: string;
|
|
397
477
|
groupSummary: string;
|
|
@@ -400,6 +480,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
400
480
|
description: string;
|
|
401
481
|
usage: string;
|
|
402
482
|
flags: ("--session-id" | "--x" | "--y" | "--button" | "--click-count" | "--target-id")[];
|
|
483
|
+
examples: string[];
|
|
484
|
+
notes: never[];
|
|
403
485
|
groupId: string;
|
|
404
486
|
groupTitle: string;
|
|
405
487
|
groupSummary: string;
|
|
@@ -408,6 +490,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
408
490
|
description: string;
|
|
409
491
|
usage: string;
|
|
410
492
|
flags: ("--session-id" | "--from-x" | "--from-y" | "--to-x" | "--to-y" | "--steps" | "--target-id")[];
|
|
493
|
+
examples: string[];
|
|
494
|
+
notes: never[];
|
|
411
495
|
groupId: string;
|
|
412
496
|
groupTitle: string;
|
|
413
497
|
groupSummary: string;
|
|
@@ -416,6 +500,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
416
500
|
description: string;
|
|
417
501
|
usage: string;
|
|
418
502
|
flags: ("--session-id" | "--include-urls")[];
|
|
503
|
+
examples: string[];
|
|
504
|
+
notes: never[];
|
|
419
505
|
groupId: string;
|
|
420
506
|
groupTitle: string;
|
|
421
507
|
groupSummary: string;
|
|
@@ -424,6 +510,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
424
510
|
description: string;
|
|
425
511
|
usage: string;
|
|
426
512
|
flags: ("--session-id" | "--target-id")[];
|
|
513
|
+
examples: string[];
|
|
514
|
+
notes: never[];
|
|
427
515
|
groupId: string;
|
|
428
516
|
groupTitle: string;
|
|
429
517
|
groupSummary: string;
|
|
@@ -432,6 +520,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
432
520
|
description: string;
|
|
433
521
|
usage: string;
|
|
434
522
|
flags: ("--session-id" | "--url")[];
|
|
523
|
+
examples: string[];
|
|
524
|
+
notes: never[];
|
|
435
525
|
groupId: string;
|
|
436
526
|
groupTitle: string;
|
|
437
527
|
groupSummary: string;
|
|
@@ -440,6 +530,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
440
530
|
description: string;
|
|
441
531
|
usage: string;
|
|
442
532
|
flags: ("--session-id" | "--target-id")[];
|
|
533
|
+
examples: string[];
|
|
534
|
+
notes: never[];
|
|
443
535
|
groupId: string;
|
|
444
536
|
groupTitle: string;
|
|
445
537
|
groupSummary: string;
|
|
@@ -448,6 +540,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
448
540
|
description: string;
|
|
449
541
|
usage: string;
|
|
450
542
|
flags: ("--session-id" | "--url" | "--name")[];
|
|
543
|
+
examples: string[];
|
|
544
|
+
notes: never[];
|
|
451
545
|
groupId: string;
|
|
452
546
|
groupTitle: string;
|
|
453
547
|
groupSummary: string;
|
|
@@ -456,6 +550,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
456
550
|
description: string;
|
|
457
551
|
usage: string;
|
|
458
552
|
flags: "--session-id"[];
|
|
553
|
+
examples: string[];
|
|
554
|
+
notes: never[];
|
|
459
555
|
groupId: string;
|
|
460
556
|
groupTitle: string;
|
|
461
557
|
groupSummary: string;
|
|
@@ -464,6 +560,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
464
560
|
description: string;
|
|
465
561
|
usage: string;
|
|
466
562
|
flags: ("--session-id" | "--name")[];
|
|
563
|
+
examples: string[];
|
|
564
|
+
notes: never[];
|
|
467
565
|
groupId: string;
|
|
468
566
|
groupTitle: string;
|
|
469
567
|
groupSummary: string;
|
|
@@ -472,6 +570,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
472
570
|
description: string;
|
|
473
571
|
usage: string;
|
|
474
572
|
flags: ("--session-id" | "--ref" | "--max-chars")[];
|
|
573
|
+
examples: string[];
|
|
574
|
+
notes: never[];
|
|
475
575
|
groupId: string;
|
|
476
576
|
groupTitle: string;
|
|
477
577
|
groupSummary: string;
|
|
@@ -480,6 +580,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
480
580
|
description: string;
|
|
481
581
|
usage: string;
|
|
482
582
|
flags: ("--session-id" | "--ref" | "--max-chars")[];
|
|
583
|
+
examples: string[];
|
|
584
|
+
notes: never[];
|
|
483
585
|
groupId: string;
|
|
484
586
|
groupTitle: string;
|
|
485
587
|
groupSummary: string;
|
|
@@ -488,6 +590,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
488
590
|
description: string;
|
|
489
591
|
usage: string;
|
|
490
592
|
flags: ("--session-id" | "--ref" | "--attr")[];
|
|
593
|
+
examples: string[];
|
|
594
|
+
notes: never[];
|
|
491
595
|
groupId: string;
|
|
492
596
|
groupTitle: string;
|
|
493
597
|
groupSummary: string;
|
|
@@ -496,6 +600,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
496
600
|
description: string;
|
|
497
601
|
usage: string;
|
|
498
602
|
flags: ("--session-id" | "--ref")[];
|
|
603
|
+
examples: string[];
|
|
604
|
+
notes: never[];
|
|
499
605
|
groupId: string;
|
|
500
606
|
groupTitle: string;
|
|
501
607
|
groupSummary: string;
|
|
@@ -504,6 +610,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
504
610
|
description: string;
|
|
505
611
|
usage: string;
|
|
506
612
|
flags: ("--session-id" | "--ref")[];
|
|
613
|
+
examples: string[];
|
|
614
|
+
notes: never[];
|
|
507
615
|
groupId: string;
|
|
508
616
|
groupTitle: string;
|
|
509
617
|
groupSummary: string;
|
|
@@ -512,6 +620,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
512
620
|
description: string;
|
|
513
621
|
usage: string;
|
|
514
622
|
flags: ("--session-id" | "--ref")[];
|
|
623
|
+
examples: string[];
|
|
624
|
+
notes: never[];
|
|
515
625
|
groupId: string;
|
|
516
626
|
groupTitle: string;
|
|
517
627
|
groupSummary: string;
|
|
@@ -520,6 +630,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
520
630
|
description: string;
|
|
521
631
|
usage: string;
|
|
522
632
|
flags: ("--session-id" | "--ref")[];
|
|
633
|
+
examples: string[];
|
|
634
|
+
notes: never[];
|
|
523
635
|
groupId: string;
|
|
524
636
|
groupTitle: string;
|
|
525
637
|
groupSummary: string;
|
|
@@ -528,6 +640,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
528
640
|
description: string;
|
|
529
641
|
usage: string;
|
|
530
642
|
flags: ("--session-id" | "--target-id" | "--path")[];
|
|
643
|
+
examples: string[];
|
|
644
|
+
notes: never[];
|
|
531
645
|
groupId: string;
|
|
532
646
|
groupTitle: string;
|
|
533
647
|
groupSummary: string;
|
|
@@ -536,6 +650,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
536
650
|
description: string;
|
|
537
651
|
usage: string;
|
|
538
652
|
flags: ("--session-id" | "--ref" | "--target-id" | "--path")[];
|
|
653
|
+
examples: string[];
|
|
654
|
+
notes: never[];
|
|
539
655
|
groupId: string;
|
|
540
656
|
groupTitle: string;
|
|
541
657
|
groupSummary: string;
|
|
@@ -544,6 +660,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
544
660
|
description: string;
|
|
545
661
|
usage: string;
|
|
546
662
|
flags: ("--session-id" | "--include-urls" | "--max" | "--since-console-seq" | "--since-network-seq" | "--since-exception-seq" | "--request-id")[];
|
|
663
|
+
examples: string[];
|
|
664
|
+
notes: never[];
|
|
547
665
|
groupId: string;
|
|
548
666
|
groupTitle: string;
|
|
549
667
|
groupSummary: string;
|
|
@@ -552,6 +670,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
552
670
|
description: string;
|
|
553
671
|
usage: string;
|
|
554
672
|
flags: ("--session-id" | "--timeout-ms" | "--target-id" | "--challenge-automation-mode")[];
|
|
673
|
+
examples: string[];
|
|
674
|
+
notes: string[];
|
|
555
675
|
groupId: string;
|
|
556
676
|
groupTitle: string;
|
|
557
677
|
groupSummary: string;
|
|
@@ -560,6 +680,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
560
680
|
description: string;
|
|
561
681
|
usage: string;
|
|
562
682
|
flags: ("--session-id" | "--timeout-ms" | "--max-chars" | "--cursor" | "--target-id" | "--include-urls" | "--reason" | "--max" | "--since-console-seq" | "--since-network-seq" | "--since-exception-seq" | "--request-id" | "--challenge-automation-mode")[];
|
|
683
|
+
examples: string[];
|
|
684
|
+
notes: string[];
|
|
563
685
|
groupId: string;
|
|
564
686
|
groupTitle: string;
|
|
565
687
|
groupSummary: string;
|
|
@@ -568,6 +690,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
568
690
|
description: string;
|
|
569
691
|
usage: string;
|
|
570
692
|
flags: "--session-id"[];
|
|
693
|
+
examples: string[];
|
|
694
|
+
notes: never[];
|
|
571
695
|
groupId: string;
|
|
572
696
|
groupTitle: string;
|
|
573
697
|
groupSummary: string;
|
|
@@ -576,6 +700,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
576
700
|
description: string;
|
|
577
701
|
usage: string;
|
|
578
702
|
flags: ("--session-id" | "--timeout-ms" | "--ref" | "--target-id" | "--path" | "--full-page")[];
|
|
703
|
+
examples: string[];
|
|
704
|
+
notes: never[];
|
|
579
705
|
groupId: string;
|
|
580
706
|
groupTitle: string;
|
|
581
707
|
groupSummary: string;
|
|
@@ -584,6 +710,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
584
710
|
description: string;
|
|
585
711
|
usage: string;
|
|
586
712
|
flags: ("--session-id" | "--timeout-ms" | "--target-id" | "--action" | "--prompt-text")[];
|
|
713
|
+
examples: string[];
|
|
714
|
+
notes: never[];
|
|
587
715
|
groupId: string;
|
|
588
716
|
groupTitle: string;
|
|
589
717
|
groupSummary: string;
|
|
@@ -592,6 +720,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
592
720
|
description: string;
|
|
593
721
|
usage: string;
|
|
594
722
|
flags: ("--session-id" | "--since-seq" | "--max")[];
|
|
723
|
+
examples: string[];
|
|
724
|
+
notes: never[];
|
|
595
725
|
groupId: string;
|
|
596
726
|
groupTitle: string;
|
|
597
727
|
groupSummary: string;
|
|
@@ -600,6 +730,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
600
730
|
description: string;
|
|
601
731
|
usage: string;
|
|
602
732
|
flags: ("--session-id" | "--since-seq" | "--max")[];
|
|
733
|
+
examples: string[];
|
|
734
|
+
notes: never[];
|
|
603
735
|
groupId: string;
|
|
604
736
|
groupTitle: string;
|
|
605
737
|
groupSummary: string;
|
|
@@ -608,6 +740,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
608
740
|
description: string;
|
|
609
741
|
usage: string;
|
|
610
742
|
flags: ("--session-id" | "--max" | "--since-console-seq" | "--since-network-seq" | "--since-exception-seq" | "--request-id")[];
|
|
743
|
+
examples: string[];
|
|
744
|
+
notes: never[];
|
|
611
745
|
groupId: string;
|
|
612
746
|
groupTitle: string;
|
|
613
747
|
groupSummary: string;
|
|
@@ -616,6 +750,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
616
750
|
description: string;
|
|
617
751
|
usage: string;
|
|
618
752
|
flags: ("--session-id" | "--url" | "--timeout-ms" | "--target-id" | "--tab-id" | "--transport" | "--screenshot-mode" | "--debug" | "--context" | "--stored" | "--include-screenshots")[];
|
|
753
|
+
examples: string[];
|
|
754
|
+
notes: string[];
|
|
619
755
|
groupId: string;
|
|
620
756
|
groupTitle: string;
|
|
621
757
|
groupSummary: string;
|
|
@@ -624,6 +760,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
624
760
|
description: string;
|
|
625
761
|
usage: string;
|
|
626
762
|
flags: ("--session-id" | "--timeout-ms" | "--target-id" | "--interval-ms" | "--max-frames" | "--output-dir")[];
|
|
763
|
+
examples: string[];
|
|
764
|
+
notes: never[];
|
|
627
765
|
groupId: string;
|
|
628
766
|
groupTitle: string;
|
|
629
767
|
groupSummary: string;
|
|
@@ -632,6 +770,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
632
770
|
description: string;
|
|
633
771
|
usage: string;
|
|
634
772
|
flags: ("--session-id" | "--timeout-ms" | "--screencast-id")[];
|
|
773
|
+
examples: string[];
|
|
774
|
+
notes: never[];
|
|
635
775
|
groupId: string;
|
|
636
776
|
groupTitle: string;
|
|
637
777
|
groupSummary: string;
|
|
@@ -640,6 +780,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
640
780
|
description: string;
|
|
641
781
|
usage: string;
|
|
642
782
|
flags: "--timeout-ms"[];
|
|
783
|
+
examples: string[];
|
|
784
|
+
notes: never[];
|
|
643
785
|
groupId: string;
|
|
644
786
|
groupTitle: string;
|
|
645
787
|
groupSummary: string;
|
|
@@ -648,6 +790,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
648
790
|
description: string;
|
|
649
791
|
usage: string;
|
|
650
792
|
flags: ("--timeout-ms" | "--reason")[];
|
|
793
|
+
examples: string[];
|
|
794
|
+
notes: never[];
|
|
651
795
|
groupId: string;
|
|
652
796
|
groupTitle: string;
|
|
653
797
|
groupSummary: string;
|
|
@@ -656,6 +800,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
656
800
|
description: string;
|
|
657
801
|
usage: string;
|
|
658
802
|
flags: ("--timeout-ms" | "--reason")[];
|
|
803
|
+
examples: string[];
|
|
804
|
+
notes: never[];
|
|
659
805
|
groupId: string;
|
|
660
806
|
groupTitle: string;
|
|
661
807
|
groupSummary: string;
|
|
@@ -664,6 +810,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
664
810
|
description: string;
|
|
665
811
|
usage: string;
|
|
666
812
|
flags: ("--timeout-ms" | "--reason")[];
|
|
813
|
+
examples: string[];
|
|
814
|
+
notes: never[];
|
|
667
815
|
groupId: string;
|
|
668
816
|
groupTitle: string;
|
|
669
817
|
groupSummary: string;
|
|
@@ -672,6 +820,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
672
820
|
description: string;
|
|
673
821
|
usage: string;
|
|
674
822
|
flags: ("--timeout-ms" | "--window-id" | "--reason")[];
|
|
823
|
+
examples: string[];
|
|
824
|
+
notes: never[];
|
|
675
825
|
groupId: string;
|
|
676
826
|
groupTitle: string;
|
|
677
827
|
groupSummary: string;
|
|
@@ -680,6 +830,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
680
830
|
description: string;
|
|
681
831
|
usage: string;
|
|
682
832
|
flags: ("--timeout-ms" | "--window-id" | "--reason")[];
|
|
833
|
+
examples: string[];
|
|
834
|
+
notes: never[];
|
|
683
835
|
groupId: string;
|
|
684
836
|
groupTitle: string;
|
|
685
837
|
groupSummary: string;
|
|
@@ -688,6 +840,8 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
688
840
|
description: string;
|
|
689
841
|
usage: string;
|
|
690
842
|
flags: ("--timeout-ms" | "--name" | "--params" | "--params-file" | "--unsafe-internal")[];
|
|
843
|
+
examples: string[];
|
|
844
|
+
notes: never[];
|
|
691
845
|
groupId: string;
|
|
692
846
|
groupTitle: string;
|
|
693
847
|
groupSummary: string;
|
|
@@ -1081,9 +1235,13 @@ export declare const PUBLIC_SURFACE_MANIFEST: {
|
|
|
1081
1235
|
name: string;
|
|
1082
1236
|
description: string;
|
|
1083
1237
|
cliEquivalent: string;
|
|
1238
|
+
example: string;
|
|
1239
|
+
notes?: undefined;
|
|
1084
1240
|
} | {
|
|
1085
1241
|
name: string;
|
|
1086
1242
|
description: string;
|
|
1243
|
+
example: string;
|
|
1244
|
+
notes: string[];
|
|
1087
1245
|
cliEquivalent?: undefined;
|
|
1088
1246
|
})[];
|
|
1089
1247
|
cliToolPairs: ({
|