@onkernel/sdk 0.96.0 → 0.97.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/package.json +1 -1
- package/resources/auth/connections.d.mts +5 -3
- package/resources/auth/connections.d.mts.map +1 -1
- package/resources/auth/connections.d.ts +5 -3
- package/resources/auth/connections.d.ts.map +1 -1
- package/resources/browsers/browsers.d.mts +2 -2
- package/resources/browsers/browsers.d.mts.map +1 -1
- package/resources/browsers/browsers.d.ts +2 -2
- package/resources/browsers/browsers.d.ts.map +1 -1
- package/resources/browsers/browsers.js.map +1 -1
- package/resources/browsers/browsers.mjs.map +1 -1
- package/resources/browsers/index.d.mts +1 -1
- package/resources/browsers/index.d.mts.map +1 -1
- package/resources/browsers/index.d.ts +1 -1
- package/resources/browsers/index.d.ts.map +1 -1
- package/resources/browsers/index.js.map +1 -1
- package/resources/browsers/index.mjs.map +1 -1
- package/resources/browsers/telemetry.d.mts +154 -8
- package/resources/browsers/telemetry.d.mts.map +1 -1
- package/resources/browsers/telemetry.d.ts +154 -8
- package/resources/browsers/telemetry.d.ts.map +1 -1
- package/src/resources/auth/connections.ts +5 -2
- package/src/resources/browsers/browsers.ts +4 -0
- package/src/resources/browsers/index.ts +2 -0
- package/src/resources/browsers/telemetry.ts +202 -7
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -192,6 +192,99 @@ export namespace BrowserCallStack {
|
|
|
192
192
|
}
|
|
193
193
|
}
|
|
194
194
|
|
|
195
|
+
/**
|
|
196
|
+
* A visible captcha challenge reached a terminal outcome.
|
|
197
|
+
*/
|
|
198
|
+
export interface BrowserCaptchaChallengeResultEvent {
|
|
199
|
+
category: 'captcha';
|
|
200
|
+
|
|
201
|
+
/**
|
|
202
|
+
* Per-challenge payload. This event is emitted once per challenge and determines
|
|
203
|
+
* its overall outcome; captcha_solve_started and captcha_solve_result describe
|
|
204
|
+
* individual tasks and may occur multiple times within the challenge.
|
|
205
|
+
*/
|
|
206
|
+
data: BrowserCaptchaChallengeResultEvent.Data;
|
|
207
|
+
|
|
208
|
+
/**
|
|
209
|
+
* Provenance metadata identifying which producer emitted the event.
|
|
210
|
+
*/
|
|
211
|
+
source: BrowserEventSource;
|
|
212
|
+
|
|
213
|
+
/**
|
|
214
|
+
* Event timestamp in Unix microseconds.
|
|
215
|
+
*/
|
|
216
|
+
ts: number;
|
|
217
|
+
|
|
218
|
+
type: 'captcha_challenge_result';
|
|
219
|
+
|
|
220
|
+
/**
|
|
221
|
+
* True if the data field was truncated due to size limits.
|
|
222
|
+
*/
|
|
223
|
+
truncated?: boolean;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
export namespace BrowserCaptchaChallengeResultEvent {
|
|
227
|
+
/**
|
|
228
|
+
* Per-challenge payload. This event is emitted once per challenge and determines
|
|
229
|
+
* its overall outcome; captcha_solve_started and captcha_solve_result describe
|
|
230
|
+
* individual tasks and may occur multiple times within the challenge.
|
|
231
|
+
*/
|
|
232
|
+
export interface Data {
|
|
233
|
+
/**
|
|
234
|
+
* Captcha kind. Enterprise reCAPTCHA variants are grouped into their version
|
|
235
|
+
* bucket (recaptcha_v2 or recaptcha_v3), press-and-hold challenges use
|
|
236
|
+
* press_and_hold, and unlisted kinds use other.
|
|
237
|
+
*/
|
|
238
|
+
captcha_type:
|
|
239
|
+
| 'hcaptcha'
|
|
240
|
+
| 'recaptcha_v2'
|
|
241
|
+
| 'recaptcha_v3'
|
|
242
|
+
| 'turnstile'
|
|
243
|
+
| 'geetest'
|
|
244
|
+
| 'press_and_hold'
|
|
245
|
+
| 'other';
|
|
246
|
+
|
|
247
|
+
/**
|
|
248
|
+
* Opaque identifier shared by events for one visible challenge. An image-grid
|
|
249
|
+
* captcha may create multiple task_id values for one challenge_id. The same value
|
|
250
|
+
* may continue across a page reload when the challenge episode continues. It does
|
|
251
|
+
* not indicate task ordering or challenge completion.
|
|
252
|
+
*/
|
|
253
|
+
challenge_id: string;
|
|
254
|
+
|
|
255
|
+
/**
|
|
256
|
+
* Wall-clock duration from the challenge appearing to its terminal outcome,
|
|
257
|
+
* covering every solver attempt in between.
|
|
258
|
+
*/
|
|
259
|
+
duration_ms: number;
|
|
260
|
+
|
|
261
|
+
/**
|
|
262
|
+
* Terminal outcome of the visible challenge. solved: the page observed the
|
|
263
|
+
* challenge clear after a solver attempt. failure: a terminal solver failure
|
|
264
|
+
* occurred, or all attempts ended while the challenge remained. timeout: the
|
|
265
|
+
* challenge-level wait budget expired while the challenge remained. abandoned:
|
|
266
|
+
* observation ended without an attributable terminal challenge outcome. This
|
|
267
|
+
* includes a dismissed widget or page unload without a solved signal or terminal
|
|
268
|
+
* solver outcome, and a token appearing while multiple same-provider challenges
|
|
269
|
+
* are open, because the producer cannot attribute that token to this visible
|
|
270
|
+
* challenge. A captcha_solve_result with the same challenge_id may therefore
|
|
271
|
+
* report success while the challenge result reports abandoned. A solved challenge
|
|
272
|
+
* does not prove the site accepted the token or that the guarded action succeeded.
|
|
273
|
+
*/
|
|
274
|
+
status: 'solved' | 'failure' | 'timeout' | 'abandoned';
|
|
275
|
+
|
|
276
|
+
/**
|
|
277
|
+
* Host of the page where the challenge appeared.
|
|
278
|
+
*/
|
|
279
|
+
website_host?: string;
|
|
280
|
+
|
|
281
|
+
/**
|
|
282
|
+
* Path of the page where the challenge appeared. Query string excluded.
|
|
283
|
+
*/
|
|
284
|
+
website_path?: string;
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
|
|
195
288
|
/**
|
|
196
289
|
* A captcha solve attempt reached a terminal outcome.
|
|
197
290
|
*/
|
|
@@ -221,13 +314,23 @@ export interface BrowserCaptchaSolveResultEvent {
|
|
|
221
314
|
export namespace BrowserCaptchaSolveResultEvent {
|
|
222
315
|
export interface Data {
|
|
223
316
|
/**
|
|
224
|
-
* Captcha
|
|
225
|
-
*
|
|
226
|
-
|
|
227
|
-
|
|
317
|
+
* Captcha kind. Enterprise reCAPTCHA variants are grouped into their version
|
|
318
|
+
* bucket (recaptcha_v2 or recaptcha_v3), press-and-hold challenges use
|
|
319
|
+
* press_and_hold, and unlisted kinds use other.
|
|
320
|
+
*/
|
|
321
|
+
captcha_type:
|
|
322
|
+
| 'hcaptcha'
|
|
323
|
+
| 'recaptcha_v2'
|
|
324
|
+
| 'recaptcha_v3'
|
|
325
|
+
| 'turnstile'
|
|
326
|
+
| 'geetest'
|
|
327
|
+
| 'press_and_hold'
|
|
328
|
+
| 'other';
|
|
228
329
|
|
|
229
330
|
/**
|
|
230
|
-
* Wall-clock duration from solve start to terminal outcome.
|
|
331
|
+
* Wall-clock duration from solve start to terminal outcome. Authoritative solve
|
|
332
|
+
* timing; do not derive it from the gap to a captcha_solve_started event, whose
|
|
333
|
+
* delivery and ordering are not guaranteed.
|
|
231
334
|
*/
|
|
232
335
|
duration_ms: number;
|
|
233
336
|
|
|
@@ -239,6 +342,14 @@ export namespace BrowserCaptchaSolveResultEvent {
|
|
|
239
342
|
*/
|
|
240
343
|
status: 'success' | 'failure' | 'timeout' | 'abandoned';
|
|
241
344
|
|
|
345
|
+
/**
|
|
346
|
+
* Opaque identifier shared by events for one visible challenge. An image-grid
|
|
347
|
+
* captcha may create multiple task_id values for one challenge_id. The same value
|
|
348
|
+
* may continue across a page reload when the challenge episode continues. It does
|
|
349
|
+
* not indicate task ordering or challenge completion.
|
|
350
|
+
*/
|
|
351
|
+
challenge_id?: string;
|
|
352
|
+
|
|
242
353
|
/**
|
|
243
354
|
* Solver-specific error code on failure (e.g. ERROR_CAPTCHA_UNSOLVABLE). Absent on
|
|
244
355
|
* success.
|
|
@@ -246,7 +357,7 @@ export namespace BrowserCaptchaSolveResultEvent {
|
|
|
246
357
|
error_code?: string;
|
|
247
358
|
|
|
248
359
|
/**
|
|
249
|
-
*
|
|
360
|
+
* Opaque identifier shared with the matching captcha_solve_started.
|
|
250
361
|
*/
|
|
251
362
|
task_id?: string;
|
|
252
363
|
|
|
@@ -262,6 +373,86 @@ export namespace BrowserCaptchaSolveResultEvent {
|
|
|
262
373
|
}
|
|
263
374
|
}
|
|
264
375
|
|
|
376
|
+
/**
|
|
377
|
+
* A captcha solver accepted a task.
|
|
378
|
+
*/
|
|
379
|
+
export interface BrowserCaptchaSolveStartedEvent {
|
|
380
|
+
category: 'captcha';
|
|
381
|
+
|
|
382
|
+
/**
|
|
383
|
+
* Per-task payload. A visible challenge may create multiple tasks. When present,
|
|
384
|
+
* task_id correlates this event with a captcha_solve_result, while challenge_id
|
|
385
|
+
* groups tasks from the same challenge. Events may arrive out of order or be
|
|
386
|
+
* absent, so their arrival does not indicate current solve state.
|
|
387
|
+
*/
|
|
388
|
+
data: BrowserCaptchaSolveStartedEvent.Data;
|
|
389
|
+
|
|
390
|
+
/**
|
|
391
|
+
* Provenance metadata identifying which producer emitted the event.
|
|
392
|
+
*/
|
|
393
|
+
source: BrowserEventSource;
|
|
394
|
+
|
|
395
|
+
/**
|
|
396
|
+
* Event timestamp in Unix microseconds.
|
|
397
|
+
*/
|
|
398
|
+
ts: number;
|
|
399
|
+
|
|
400
|
+
type: 'captcha_solve_started';
|
|
401
|
+
|
|
402
|
+
/**
|
|
403
|
+
* True if the data field was truncated due to size limits.
|
|
404
|
+
*/
|
|
405
|
+
truncated?: boolean;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
export namespace BrowserCaptchaSolveStartedEvent {
|
|
409
|
+
/**
|
|
410
|
+
* Per-task payload. A visible challenge may create multiple tasks. When present,
|
|
411
|
+
* task_id correlates this event with a captcha_solve_result, while challenge_id
|
|
412
|
+
* groups tasks from the same challenge. Events may arrive out of order or be
|
|
413
|
+
* absent, so their arrival does not indicate current solve state.
|
|
414
|
+
*/
|
|
415
|
+
export interface Data {
|
|
416
|
+
/**
|
|
417
|
+
* Captcha kind. Enterprise reCAPTCHA variants are grouped into their version
|
|
418
|
+
* bucket (recaptcha_v2 or recaptcha_v3), press-and-hold challenges use
|
|
419
|
+
* press_and_hold, and unlisted kinds use other.
|
|
420
|
+
*/
|
|
421
|
+
captcha_type:
|
|
422
|
+
| 'hcaptcha'
|
|
423
|
+
| 'recaptcha_v2'
|
|
424
|
+
| 'recaptcha_v3'
|
|
425
|
+
| 'turnstile'
|
|
426
|
+
| 'geetest'
|
|
427
|
+
| 'press_and_hold'
|
|
428
|
+
| 'other';
|
|
429
|
+
|
|
430
|
+
/**
|
|
431
|
+
* Opaque identifier shared by events for one visible challenge. An image-grid
|
|
432
|
+
* captcha may create multiple task_id values for one challenge_id. The same value
|
|
433
|
+
* may continue across a page reload when the challenge episode continues. It does
|
|
434
|
+
* not indicate task ordering or challenge completion.
|
|
435
|
+
*/
|
|
436
|
+
challenge_id?: string;
|
|
437
|
+
|
|
438
|
+
/**
|
|
439
|
+
* Opaque identifier shared with the matching captcha_solve_result.
|
|
440
|
+
*/
|
|
441
|
+
task_id?: string;
|
|
442
|
+
|
|
443
|
+
/**
|
|
444
|
+
* Host of the page where the captcha is being solved. May be empty for solver
|
|
445
|
+
* tasks that carry no page URL.
|
|
446
|
+
*/
|
|
447
|
+
website_host?: string;
|
|
448
|
+
|
|
449
|
+
/**
|
|
450
|
+
* Path of the page where the captcha is being solved. Query string excluded.
|
|
451
|
+
*/
|
|
452
|
+
website_path?: string;
|
|
453
|
+
}
|
|
454
|
+
}
|
|
455
|
+
|
|
265
456
|
/**
|
|
266
457
|
* A browser-control command a client sent over the CDP WebSocket proxy: input
|
|
267
458
|
* gestures, navigation, dialog handling, file selection and screenshots.
|
|
@@ -4346,7 +4537,7 @@ export namespace BrowserSystemOomKillEvent {
|
|
|
4346
4537
|
*/
|
|
4347
4538
|
export interface BrowserTelemetryCategoriesConfig {
|
|
4348
4539
|
/**
|
|
4349
|
-
* Captcha
|
|
4540
|
+
* Captcha solver tasks and visible challenge outcomes. On by default.
|
|
4350
4541
|
*/
|
|
4351
4542
|
captcha?: BrowserTelemetryCategoryConfig;
|
|
4352
4543
|
|
|
@@ -4516,7 +4707,9 @@ export type BrowserTelemetryEvent =
|
|
|
4516
4707
|
| BrowserCdpDisconnectEvent
|
|
4517
4708
|
| BrowserLiveViewConnectEvent
|
|
4518
4709
|
| BrowserLiveViewDisconnectEvent
|
|
4710
|
+
| BrowserCaptchaSolveStartedEvent
|
|
4519
4711
|
| BrowserCaptchaSolveResultEvent
|
|
4712
|
+
| BrowserCaptchaChallengeResultEvent
|
|
4520
4713
|
| BrowserSystemOomKillEvent
|
|
4521
4714
|
| BrowserServiceCrashedEvent;
|
|
4522
4715
|
|
|
@@ -4660,7 +4853,9 @@ export declare namespace Telemetry {
|
|
|
4660
4853
|
export {
|
|
4661
4854
|
type BrowserAPICallEvent as BrowserAPICallEvent,
|
|
4662
4855
|
type BrowserCallStack as BrowserCallStack,
|
|
4856
|
+
type BrowserCaptchaChallengeResultEvent as BrowserCaptchaChallengeResultEvent,
|
|
4663
4857
|
type BrowserCaptchaSolveResultEvent as BrowserCaptchaSolveResultEvent,
|
|
4858
|
+
type BrowserCaptchaSolveStartedEvent as BrowserCaptchaSolveStartedEvent,
|
|
4664
4859
|
type BrowserCdpCommandEvent as BrowserCdpCommandEvent,
|
|
4665
4860
|
type BrowserCdpCommandMethod as BrowserCdpCommandMethod,
|
|
4666
4861
|
type BrowserCdpConnectEvent as BrowserCdpConnectEvent,
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.97.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.97.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.97.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.97.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|