@agenticmail/openclaw 0.5.40 → 0.5.41
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/index.cjs +3372 -0
- package/dist/index.d.cts +12 -0
- package/package.json +4 -2
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
declare function activate(api: any): void;
|
|
2
|
+
/**
|
|
3
|
+
* OpenClaw plugin module export.
|
|
4
|
+
* Must export an object with `id` and `register` — OpenClaw reads `id` for identification
|
|
5
|
+
* and calls `register(api)` during plugin activation.
|
|
6
|
+
*/
|
|
7
|
+
declare const _default: {
|
|
8
|
+
id: string;
|
|
9
|
+
register: typeof activate;
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
export { _default as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agenticmail/openclaw",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.41",
|
|
4
4
|
"description": "OpenClaw plugin for AgenticMail \u2014 email, SMS, and phone number access for OpenClaw agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -8,6 +8,8 @@
|
|
|
8
8
|
"exports": {
|
|
9
9
|
".": {
|
|
10
10
|
"import": "./dist/index.js",
|
|
11
|
+
"require": "./dist/index.cjs",
|
|
12
|
+
"default": "./dist/index.js",
|
|
11
13
|
"types": "./dist/index.d.ts"
|
|
12
14
|
}
|
|
13
15
|
},
|
|
@@ -26,7 +28,7 @@
|
|
|
26
28
|
]
|
|
27
29
|
},
|
|
28
30
|
"scripts": {
|
|
29
|
-
"build": "tsup index.ts --format esm --dts --clean",
|
|
31
|
+
"build": "tsup index.ts --format esm,cjs --dts --clean",
|
|
30
32
|
"test": "vitest run --passWithNoTests",
|
|
31
33
|
"preuninstall": "node scripts/uninstall.mjs",
|
|
32
34
|
"prepublishOnly": "npm run build"
|