@agentvault/secure-channel 0.6.1 → 0.6.2
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/openclaw-entry.d.ts +7 -6
- package/dist/openclaw-entry.d.ts.map +1 -1
- package/dist/openclaw-entry.js +88 -45889
- package/dist/openclaw-entry.js.map +4 -4
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/dist/openclaw-entry.d.ts
CHANGED
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* OpenClaw plugin entry point.
|
|
2
|
+
* OpenClaw channel plugin entry point.
|
|
3
3
|
*
|
|
4
|
-
*
|
|
5
|
-
*
|
|
4
|
+
* Intentionally thin — no heavy imports (libsodium etc.) at module load time.
|
|
5
|
+
* SecureChannel is dynamically imported inside gateway.startAccount (already async)
|
|
6
|
+
* so libsodium's top-level await never runs during plugin registration.
|
|
6
7
|
*
|
|
7
|
-
*
|
|
8
|
+
* Loaded by OpenClaw via the `openclaw.extensions` field in package.json.
|
|
8
9
|
*/
|
|
9
|
-
declare const
|
|
10
|
+
declare const _default: {
|
|
10
11
|
id: string;
|
|
11
12
|
name: string;
|
|
12
13
|
description: string;
|
|
13
14
|
register(api: any): void;
|
|
14
15
|
};
|
|
15
|
-
export default
|
|
16
|
+
export default _default;
|
|
16
17
|
//# sourceMappingURL=openclaw-entry.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"openclaw-entry.d.ts","sourceRoot":"","sources":["../src/openclaw-entry.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"openclaw-entry.d.ts","sourceRoot":"","sources":["../src/openclaw-entry.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;;;;;kBAwLa,GAAG;;AALnB,wBASE"}
|