@elizaos/plugin-registry 2.0.3-beta.2 → 2.0.3-beta.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +3 -3
  2. package/package.json +16 -6
package/dist/index.d.ts CHANGED
@@ -20,7 +20,7 @@
20
20
  * agent-private runtime state; consumers should import through this
21
21
  * plugin's forwarder rather than reaching across into agent directly.
22
22
  */
23
- export { buildPluginListResponse, handlePluginsCompatRoutes, } from "./api/app-plugins-routes.ts";
24
- export { handlePluginRoutes } from "./api/plugin-routes.ts";
25
- export { type InstallPhase, type InstallProgress, type InstallResult, installAndRestart, installPlugin, listInstalledPlugins, type ProgressCallback, type UninstallResult, uninstallAndRestart, uninstallPlugin, } from "./services/plugin-installer.ts";
23
+ export { buildPluginListResponse, handlePluginsCompatRoutes, } from "./api/app-plugins-routes.js";
24
+ export { handlePluginRoutes } from "./api/plugin-routes.js";
25
+ export { type InstallPhase, type InstallProgress, type InstallResult, installAndRestart, installPlugin, listInstalledPlugins, type ProgressCallback, type UninstallResult, uninstallAndRestart, uninstallPlugin, } from "./services/plugin-installer.js";
26
26
  //# sourceMappingURL=index.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/plugin-registry",
3
- "version": "2.0.3-beta.2",
3
+ "version": "2.0.3-beta.4",
4
4
  "type": "module",
5
5
  "description": "Plugin registry plugin: consolidates plugin discovery, manifest reading, install/uninstall lifecycle, and HTTP routes for plugin management. Owns the cross-package plugin-routes (agent-tier) and plugins-routes (app-core compat-tier) surfaces and the install-orchestration helpers that forward into the agent runtime.",
6
6
  "main": "./dist/index.js",
@@ -15,6 +15,16 @@
15
15
  },
16
16
  "import": "./dist/index.js",
17
17
  "default": "./dist/index.js"
18
+ },
19
+ "./api/plugin-routes": {
20
+ "types": "./dist/api/plugin-routes.d.ts",
21
+ "eliza-source": {
22
+ "types": "./src/api/plugin-routes.ts",
23
+ "import": "./src/api/plugin-routes.ts",
24
+ "default": "./src/api/plugin-routes.ts"
25
+ },
26
+ "import": "./dist/api/plugin-routes.js",
27
+ "default": "./dist/api/plugin-routes.js"
18
28
  }
19
29
  },
20
30
  "scripts": {
@@ -23,12 +33,12 @@
23
33
  "build": "bun run build:js && bun run build:types",
24
34
  "clean": "rm -rf dist",
25
35
  "build:js": "tsup --config ../tsup.plugin-packages.shared.ts",
26
- "build:types": "tsc --noCheck -p tsconfig.build.json"
36
+ "build:types": "tsc --noCheck -p tsconfig.build.json && node ../../packages/scripts/rewrite-dist-relative-imports-node-esm.mjs"
27
37
  },
28
38
  "dependencies": {
29
- "@elizaos/core": "2.0.3-beta.2",
30
- "@elizaos/shared": "2.0.3-beta.2",
31
- "@elizaos/vault": "2.0.3-beta.2"
39
+ "@elizaos/core": "2.0.3-beta.4",
40
+ "@elizaos/shared": "2.0.3-beta.4",
41
+ "@elizaos/vault": "2.0.3-beta.4"
32
42
  },
33
43
  "devDependencies": {
34
44
  "bun-types": "^1.3.12",
@@ -54,5 +64,5 @@
54
64
  "files": [
55
65
  "dist"
56
66
  ],
57
- "gitHead": "82fe0f44215954c2417328203f5bd6510985c1fc"
67
+ "gitHead": "f76f55793a0fb8d6b869dd8ddce03970de061e34"
58
68
  }