exoagent 0.0.12 → 0.0.14
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 +7 -10
- package/dist/code-mode.d.ts +2 -24
- package/dist/exoeval/allowed.d.ts +9 -0
- package/dist/exoeval/builtins.d.ts +188 -0
- package/dist/exoeval/evaluator.d.ts +68 -0
- package/dist/exoeval/expr.d.ts +50 -0
- package/dist/exoeval/index.d.ts +16 -0
- package/dist/exoeval/lib/index.d.ts +1 -0
- package/dist/exoeval/scope.d.ts +13 -0
- package/dist/exoeval/tool.d.ts +49 -0
- package/dist/exoeval/utils.d.ts +9 -0
- package/dist/index.d.ts +3 -5
- package/dist/index.mjs +8255 -205
- package/dist/rpc-toolset-test-helpers.d.ts +2 -5
- package/dist/runtime/daemon.d.ts +37 -0
- package/dist/runtime/dts.d.ts +21 -0
- package/dist/runtime/eslint-exo-rule.d.ts +3 -0
- package/dist/runtime/exo.d.ts +33 -0
- package/dist/runtime/providers/args.d.ts +13 -0
- package/dist/runtime/providers/pi.d.ts +68 -0
- package/dist/runtime/providers/review.d.ts +82 -0
- package/dist/runtime/providers/sandbox.d.ts +54 -0
- package/dist/runtime/providers/secrets.d.ts +18 -0
- package/dist/runtime/providers/storage.d.ts +16 -0
- package/dist/runtime/secrets-ui.d.ts +19 -0
- package/dist/runtime/start-agent.d.ts +2 -0
- package/dist/runtime/start.d.ts +2 -0
- package/dist/sql/builder.d.ts +6 -7
- package/dist/sql/expression.d.ts +1 -2
- package/dist/sql.mjs +61 -77
- package/dist/tool-5wSlXWJ2.js +176 -0
- package/dist/tool-wrapper.d.ts +6 -13
- package/package.json +11 -10
- package/dist/capnweb/LICENSE.txt +0 -21
- package/dist/capnweb/README.md +0 -734
- package/dist/capnweb/dist/index-workers.cjs +0 -2791
- package/dist/capnweb/dist/index-workers.cjs.map +0 -1
- package/dist/capnweb/dist/index-workers.d.cts +0 -2
- package/dist/capnweb/dist/index-workers.d.ts +0 -2
- package/dist/capnweb/dist/index-workers.js +0 -2754
- package/dist/capnweb/dist/index-workers.js.map +0 -1
- package/dist/capnweb/dist/index.cjs +0 -2768
- package/dist/capnweb/dist/index.cjs.map +0 -1
- package/dist/capnweb/dist/index.d.cts +0 -383
- package/dist/capnweb/dist/index.d.ts +0 -383
- package/dist/capnweb/dist/index.js +0 -2751
- package/dist/capnweb/dist/index.js.map +0 -1
- package/dist/capnweb/package.json +0 -59
- package/dist/capnweb-test-helpers.d.ts +0 -25
- package/dist/chunk-VBDAOXYI-BhoIkhUn.mjs +0 -831
- package/dist/code-mode-deno.d.ts +0 -13
- package/dist/code-mode-runtime.d.ts +0 -1
- package/dist/nodefs-C8H-6XZ_.mjs +0 -26
- package/dist/opfs-ahp-Dy9HQOrY.mjs +0 -367
- package/dist/rpc-toolset-BnC2BXPq.js +0 -146
- package/dist/rpc-toolset-test-helpers.d.mts +0 -254
- package/dist/rpc-toolset-test-helpers.mjs +0 -10364
- package/dist/rpc-toolset.d.ts +0 -34
- package/dist/stream-transport.d.ts +0 -11
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "capnweb",
|
|
3
|
-
"version": "0.4.0",
|
|
4
|
-
"description": "JavaScript/TypeScript-native RPC library with Promise Pipelining",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"types": "dist/index.d.ts",
|
|
7
|
-
"author": "Kenton Varda <kenton@cloudflare.com>",
|
|
8
|
-
"license": "MIT",
|
|
9
|
-
"files": [
|
|
10
|
-
"dist"
|
|
11
|
-
],
|
|
12
|
-
"exports": {
|
|
13
|
-
".": {
|
|
14
|
-
"types": "./dist/index.d.ts",
|
|
15
|
-
"import": {
|
|
16
|
-
"workerd": "./dist/index-workers.js",
|
|
17
|
-
"default": "./dist/index.js"
|
|
18
|
-
},
|
|
19
|
-
"require": {
|
|
20
|
-
"workerd": "./dist/index-workers.cjs",
|
|
21
|
-
"default": "./dist/index.cjs"
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
},
|
|
25
|
-
"type": "module",
|
|
26
|
-
"publishConfig": {
|
|
27
|
-
"access": "public"
|
|
28
|
-
},
|
|
29
|
-
"scripts": {
|
|
30
|
-
"build": "tsup --format esm,cjs",
|
|
31
|
-
"build:watch": "tsup --watch --format esm,cjs",
|
|
32
|
-
"test": "vitest run",
|
|
33
|
-
"test:watch": "vitest",
|
|
34
|
-
"prepublishOnly": "npm run build"
|
|
35
|
-
},
|
|
36
|
-
"devDependencies": {
|
|
37
|
-
"@changesets/changelog-github": "^0.5.2",
|
|
38
|
-
"@changesets/cli": "^2.29.8",
|
|
39
|
-
"@cloudflare/vitest-pool-workers": "^0.10.15",
|
|
40
|
-
"@cloudflare/workers-types": "^4.20251216.0",
|
|
41
|
-
"@types/ws": "^8.18.1",
|
|
42
|
-
"@vitest/browser": "^3.2.4",
|
|
43
|
-
"pkg-pr-new": "^0.0.60",
|
|
44
|
-
"playwright": "^1.56.1",
|
|
45
|
-
"tsup": "^8.5.1",
|
|
46
|
-
"tsx": "^4.21.0",
|
|
47
|
-
"typescript": "^5.9.3",
|
|
48
|
-
"vitest": "^3.2.4",
|
|
49
|
-
"ws": "^8.18.3"
|
|
50
|
-
},
|
|
51
|
-
"repository": {
|
|
52
|
-
"type": "git",
|
|
53
|
-
"url": "https://github.com/cloudflare/capnweb"
|
|
54
|
-
},
|
|
55
|
-
"bugs": {
|
|
56
|
-
"url": "https://github.com/cloudflare/capnweb/issues"
|
|
57
|
-
},
|
|
58
|
-
"homepage": "https://github.com/cloudflare/capnweb#readme"
|
|
59
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { RpcSessionOptions, RpcStub, RpcTarget, RpcTransport, RpcSession } from '../packages/capnweb/dist';
|
|
2
|
-
declare class TestTransport implements RpcTransport {
|
|
3
|
-
name: string;
|
|
4
|
-
private partner?;
|
|
5
|
-
constructor(name: string, partner?: TestTransport | undefined);
|
|
6
|
-
private queue;
|
|
7
|
-
private waiter?;
|
|
8
|
-
private aborter?;
|
|
9
|
-
log: boolean;
|
|
10
|
-
send(message: string): Promise<void>;
|
|
11
|
-
receive(): Promise<string>;
|
|
12
|
-
forceReceiveError(error: any): void;
|
|
13
|
-
}
|
|
14
|
-
export declare class TestHarness<T extends RpcTarget> {
|
|
15
|
-
clientTransport: TestTransport;
|
|
16
|
-
serverTransport: TestTransport;
|
|
17
|
-
client: RpcSession<T>;
|
|
18
|
-
server: RpcSession;
|
|
19
|
-
stub: RpcStub<T>;
|
|
20
|
-
constructor(target: T, serverOptions?: RpcSessionOptions);
|
|
21
|
-
enableLogging(): void;
|
|
22
|
-
checkAllDisposed(): void;
|
|
23
|
-
[Symbol.asyncDispose](): Promise<void>;
|
|
24
|
-
}
|
|
25
|
-
export {};
|