@harperfast/agent 0.13.0 → 0.13.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/dist/agent.js +27 -28
- package/package.json +13 -13
- package/dist/BrowserWebSocketTransport-YCNS4FS4.js +0 -7
- package/dist/LaunchOptions-Y7D2IMM3.js +0 -9
- package/dist/NodeWebSocketTransport-TOVQQIXD.js +0 -8
- package/dist/bidi-UGABXYIW.js +0 -18794
- package/dist/chunk-23SGXNI6.js +0 -244
- package/dist/chunk-2ESYSVXG.js +0 -48
- package/dist/chunk-435G4BZK.js +0 -210767
- package/dist/chunk-FCLITLWE.js +0 -775
- package/dist/chunk-MGX7MDP2.js +0 -15
- package/dist/chunk-PG3SGAEX.js +0 -40
- package/dist/chunk-SACY2WFT.js +0 -12205
- package/dist/chunk-SLTU5TTQ.js +0 -31483
- package/dist/chunk-VD4EVG4H.js +0 -3692
- package/dist/chunk-YLJAHQTP.js +0 -30
- package/dist/chunk-ZDS7NDTW.js +0 -1661
- package/dist/extract-zip-N66P73SM.js +0 -1499
- package/dist/helpers-4S4VJSDS.js +0 -17
- package/dist/main-J53CTMGG.js +0 -60
- package/dist/puppeteer-KULXOV7T.js +0 -15064
- package/dist/src-GTRPEVYZ.js +0 -5
- package/dist/tar-fs-ETYYVPLS.js +0 -2562
- package/dist/typescript-XXE3DJ5D.js +0 -5
- package/dist/yargs-CJ75NAFN.js +0 -3230
package/dist/chunk-MGX7MDP2.js
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
// node_modules/puppeteer-core/lib/esm/puppeteer/util/version.js
|
|
2
|
-
var packageVersion = "24.37.2";
|
|
3
|
-
|
|
4
|
-
export {
|
|
5
|
-
packageVersion
|
|
6
|
-
};
|
|
7
|
-
/*! Bundled license information:
|
|
8
|
-
|
|
9
|
-
puppeteer-core/lib/esm/puppeteer/util/version.js:
|
|
10
|
-
(**
|
|
11
|
-
* @license
|
|
12
|
-
* Copyright 2025 Google Inc.
|
|
13
|
-
* SPDX-License-Identifier: Apache-2.0
|
|
14
|
-
*)
|
|
15
|
-
*/
|
package/dist/chunk-PG3SGAEX.js
DELETED
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
// node_modules/puppeteer-core/lib/esm/puppeteer/common/BrowserWebSocketTransport.js
|
|
2
|
-
var BrowserWebSocketTransport = class _BrowserWebSocketTransport {
|
|
3
|
-
static create(url) {
|
|
4
|
-
return new Promise((resolve, reject) => {
|
|
5
|
-
const ws = new WebSocket(url);
|
|
6
|
-
ws.addEventListener("open", () => {
|
|
7
|
-
return resolve(new _BrowserWebSocketTransport(ws));
|
|
8
|
-
});
|
|
9
|
-
ws.addEventListener("error", reject);
|
|
10
|
-
});
|
|
11
|
-
}
|
|
12
|
-
#ws;
|
|
13
|
-
onmessage;
|
|
14
|
-
onclose;
|
|
15
|
-
constructor(ws) {
|
|
16
|
-
this.#ws = ws;
|
|
17
|
-
this.#ws.addEventListener("message", (event) => {
|
|
18
|
-
if (this.onmessage) {
|
|
19
|
-
this.onmessage.call(null, event.data);
|
|
20
|
-
}
|
|
21
|
-
});
|
|
22
|
-
this.#ws.addEventListener("close", () => {
|
|
23
|
-
if (this.onclose) {
|
|
24
|
-
this.onclose.call(null);
|
|
25
|
-
}
|
|
26
|
-
});
|
|
27
|
-
this.#ws.addEventListener("error", () => {
|
|
28
|
-
});
|
|
29
|
-
}
|
|
30
|
-
send(message) {
|
|
31
|
-
this.#ws.send(message);
|
|
32
|
-
}
|
|
33
|
-
close() {
|
|
34
|
-
this.#ws.close();
|
|
35
|
-
}
|
|
36
|
-
};
|
|
37
|
-
|
|
38
|
-
export {
|
|
39
|
-
BrowserWebSocketTransport
|
|
40
|
-
};
|