@hehanlin/open-agent-bridge 0.6.3 → 0.6.4
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/node_modules/@byted/frontier-web-sdk/README.md +11 -0
- package/node_modules/@byted/frontier-web-sdk/lib/fws.esm.js +2438 -0
- package/node_modules/@byted/frontier-web-sdk/lib/fws.js +2535 -0
- package/node_modules/@byted/frontier-web-sdk/lib/fws.umd.js +2699 -0
- package/node_modules/@byted/frontier-web-sdk/lib/fws.umd.min.js +1 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/db/index.d.ts +5 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/db/qos-idb.d.ts +22 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/db/qos-localstorage.d.ts +20 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/db/qos-ministorage.d.ts +20 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/fws.d.ts +225 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/idl/bppb2.d.ts +27 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/idl/protobuf.d.ts +8 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/manager/cursor-manager.d.ts +25 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/manager/endpoint-manager.d.ts +15 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/manager/qos-manager.d.ts +17 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/manager/tnc-manager.d.ts +0 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/process/message/ack-process.d.ts +3 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/process/message/cursor-helper.d.ts +3 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/process/message/cursor-process.d.ts +3 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/process/message/decode-process.d.ts +2 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/process/message/dispatch-message-process.d.ts +3 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/process/message/finish-message-process.d.ts +3 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/process/message/index.d.ts +7 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/process/message/qos-helper.d.ts +12 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/process/message/qos-process.d.ts +3 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/process/open/finish-open-process.d.ts +2 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/process/open/index.d.ts +3 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/process/open/open-process.d.ts +2 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/process/open/open-success-process.d.ts +2 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/process/process-trigger.d.ts +3 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/utils/arraybuffer-trans.d.ts +2 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/utils/buffer.d.ts +115 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/utils/check-payload-type.d.ts +1 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/utils/cursor-serialize.d.ts +14 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/utils/env-params-gen.d.ts +5 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/utils/env.d.ts +5 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/utils/event-emitter.d.ts +39 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/utils/event.d.ts +88 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/utils/get-socket-error.d.ts +1 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/utils/header-key.d.ts +2 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/utils/log-id.d.ts +6 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/utils/long.d.ts +25 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/utils/pkg-loss-counter.d.ts +8 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/utils/pool.d.ts +29 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/utils/utf8.d.ts +24 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/utils/websocket.d.ts +2 -0
- package/node_modules/@byted/frontier-web-sdk/lib/types/websocket/mini-websocket.d.ts +20 -0
- package/node_modules/@byted/frontier-web-sdk/package.json +52 -0
- package/node_modules/idb/CHANGELOG.md +87 -0
- package/node_modules/idb/LICENSE +6 -0
- package/node_modules/idb/README.md +497 -0
- package/node_modules/idb/build/async-iterators.cjs +57 -0
- package/node_modules/idb/build/async-iterators.d.ts +1 -0
- package/node_modules/idb/build/async-iterators.js +55 -0
- package/node_modules/idb/build/database-extras.d.ts +1 -0
- package/node_modules/idb/build/entry.d.ts +615 -0
- package/node_modules/idb/build/index.cjs +94 -0
- package/node_modules/idb/build/index.d.ts +2 -0
- package/node_modules/idb/build/index.js +88 -0
- package/node_modules/idb/build/umd-with-async-ittr.js +1 -0
- package/node_modules/idb/build/umd.js +1 -0
- package/node_modules/idb/build/util.d.ts +3 -0
- package/node_modules/idb/build/wrap-idb-value.cjs +191 -0
- package/node_modules/idb/build/wrap-idb-value.d.ts +34 -0
- package/node_modules/idb/build/wrap-idb-value.js +185 -0
- package/node_modules/idb/package.json +59 -0
- package/node_modules/idb/with-async-ittr.cjs +2 -0
- package/node_modules/idb/with-async-ittr.d.ts +1 -0
- package/node_modules/idb/with-async-ittr.js +2 -0
- package/package.json +4 -1
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "idb",
|
|
3
|
+
"version": "7.0.2",
|
|
4
|
+
"description": "A small wrapper that makes IndexedDB usable",
|
|
5
|
+
"main": "./build/index.cjs",
|
|
6
|
+
"module": "./build/index.js",
|
|
7
|
+
"types": "./build/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./build/index.d.ts",
|
|
11
|
+
"module": "./build/index.js",
|
|
12
|
+
"import": "./build/index.js",
|
|
13
|
+
"default": "./build/index.cjs"
|
|
14
|
+
},
|
|
15
|
+
"./with-async-ittr": {
|
|
16
|
+
"types": "./with-async-ittr.d.ts",
|
|
17
|
+
"module": "./with-async-ittr.js",
|
|
18
|
+
"import": "./with-async-ittr.js",
|
|
19
|
+
"default": "./with-async-ittr.cjs"
|
|
20
|
+
},
|
|
21
|
+
"./build/*": "./build/*",
|
|
22
|
+
"./package.json": "./package.json"
|
|
23
|
+
},
|
|
24
|
+
"files": [
|
|
25
|
+
"build/**",
|
|
26
|
+
"with-*",
|
|
27
|
+
"CHANGELOG.md"
|
|
28
|
+
],
|
|
29
|
+
"type": "module",
|
|
30
|
+
"scripts": {
|
|
31
|
+
"build": "PRODUCTION=1 rollup -c && node --experimental-modules lib/size-report.mjs",
|
|
32
|
+
"dev": "rollup -c --watch",
|
|
33
|
+
"prepack": "npm run build"
|
|
34
|
+
},
|
|
35
|
+
"repository": {
|
|
36
|
+
"type": "git",
|
|
37
|
+
"url": "git://github.com/jakearchibald/idb.git"
|
|
38
|
+
},
|
|
39
|
+
"author": "Jake Archibald",
|
|
40
|
+
"license": "ISC",
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@rollup/plugin-commonjs": "^22.0.0",
|
|
43
|
+
"@rollup/plugin-node-resolve": "^13.3.0",
|
|
44
|
+
"@types/chai": "^4.2.22",
|
|
45
|
+
"@types/estree": "^0.0.51",
|
|
46
|
+
"@types/mocha": "^9.0.0",
|
|
47
|
+
"chai": "^4.3.4",
|
|
48
|
+
"conditional-type-checks": "^1.0.5",
|
|
49
|
+
"del": "^6.0.0",
|
|
50
|
+
"filesize": "^9.0.8",
|
|
51
|
+
"glob": "^8.0.3",
|
|
52
|
+
"mocha": "^10.0.0",
|
|
53
|
+
"prettier": "^2.4.1",
|
|
54
|
+
"rollup": "^2.75.6",
|
|
55
|
+
"rollup-plugin-terser": "^7.0.2",
|
|
56
|
+
"tsd": "^0.21.0",
|
|
57
|
+
"typescript": "^4.7.3"
|
|
58
|
+
}
|
|
59
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './build';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hehanlin/open-agent-bridge",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"open-agent-bridge": "dist/cli.js"
|
|
@@ -23,6 +23,9 @@
|
|
|
23
23
|
"@zed-industries/codex-acp": "^0.16.0",
|
|
24
24
|
"ws": "^8.18.3"
|
|
25
25
|
},
|
|
26
|
+
"bundledDependencies": [
|
|
27
|
+
"@byted/frontier-web-sdk"
|
|
28
|
+
],
|
|
26
29
|
"devDependencies": {
|
|
27
30
|
"@types/node": "^24.0.0",
|
|
28
31
|
"@types/ws": "^8.18.1",
|