@clawstore/clawstore 1.0.2 → 1.0.7
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/src/cli.d.ts.map +1 -1
- package/dist/src/cli.js +11 -1
- package/dist/src/cli.js.map +1 -1
- package/dist/src/commands.d.ts.map +1 -1
- package/dist/src/commands.js +8 -1
- package/dist/src/commands.js.map +1 -1
- package/dist/src/core/agent-register.d.ts +6 -0
- package/dist/src/core/agent-register.d.ts.map +1 -0
- package/dist/src/core/agent-register.js +48 -0
- package/dist/src/core/agent-register.js.map +1 -0
- package/dist/src/core/api-health.d.ts +9 -0
- package/dist/src/core/api-health.d.ts.map +1 -0
- package/dist/src/core/api-health.js +17 -0
- package/dist/src/core/api-health.js.map +1 -0
- package/dist/src/core/diagnostics.d.ts +7 -0
- package/dist/src/core/diagnostics.d.ts.map +1 -0
- package/dist/src/core/diagnostics.js +145 -0
- package/dist/src/core/diagnostics.js.map +1 -0
- package/dist/src/core/openclaw-profile.d.ts +6 -0
- package/dist/src/core/openclaw-profile.d.ts.map +1 -0
- package/dist/src/core/openclaw-profile.js +12 -0
- package/dist/src/core/openclaw-profile.js.map +1 -0
- package/dist/src/core/workspace.d.ts +0 -9
- package/dist/src/core/workspace.d.ts.map +1 -1
- package/dist/src/core/workspace.js +7 -154
- package/dist/src/core/workspace.js.map +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +18 -3
- package/src/cli.ts +12 -1
- package/src/commands.ts +9 -1
- package/src/core/agent-register.ts +57 -0
- package/src/core/api-health.ts +17 -0
- package/src/core/diagnostics.ts +163 -0
- package/src/core/openclaw-profile.ts +10 -0
- package/src/core/workspace.ts +7 -168
- package/clawstore-clawstore-1.0.2.tgz +0 -0
- package/dist/src/__tests__/cli-sim.test.d.ts +0 -9
- package/dist/src/__tests__/cli-sim.test.d.ts.map +0 -1
- package/dist/src/__tests__/cli-sim.test.js +0 -275
- package/dist/src/__tests__/cli-sim.test.js.map +0 -1
- package/dist/src/__tests__/e2e.test.d.ts +0 -10
- package/dist/src/__tests__/e2e.test.d.ts.map +0 -1
- package/dist/src/__tests__/e2e.test.js +0 -159
- package/dist/src/__tests__/e2e.test.js.map +0 -1
- package/src/__tests__/cli-sim.test.ts +0 -303
- package/src/__tests__/e2e.test.ts +0 -186
- package/tsconfig.json +0 -23
package/tsconfig.json
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"target": "ES2022",
|
|
4
|
-
"module": "ESNext",
|
|
5
|
-
"moduleResolution": "bundler",
|
|
6
|
-
"lib": ["ES2022"],
|
|
7
|
-
"outDir": "./dist",
|
|
8
|
-
"rootDir": ".",
|
|
9
|
-
"strict": true,
|
|
10
|
-
"esModuleInterop": true,
|
|
11
|
-
"skipLibCheck": true,
|
|
12
|
-
"forceConsistentCasingInFileNames": true,
|
|
13
|
-
"resolveJsonModule": true,
|
|
14
|
-
"declaration": true,
|
|
15
|
-
"declarationMap": true,
|
|
16
|
-
"sourceMap": true,
|
|
17
|
-
"paths": {
|
|
18
|
-
"openclaw/plugin-sdk/*": ["./typings/openclaw-plugin-sdk/*"]
|
|
19
|
-
}
|
|
20
|
-
},
|
|
21
|
-
"include": ["index.ts", "src/**/*.ts", "typings/**/*.ts"],
|
|
22
|
-
"exclude": ["node_modules", "dist"]
|
|
23
|
-
}
|