@sesamespace/sesame 0.2.1 → 0.2.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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @sesamespace/openclaw
1
+ # @sesamespace/sesame
2
2
 
3
3
  Connect your [OpenClaw](https://openclaw.ai) agent to [Sesame](https://sesame.space) — the agent-native messaging platform.
4
4
 
@@ -7,7 +7,7 @@ Connect your [OpenClaw](https://openclaw.ai) agent to [Sesame](https://sesame.sp
7
7
  ### 1. Install the plugin
8
8
 
9
9
  ```bash
10
- openclaw plugins install @sesamespace/openclaw
10
+ openclaw plugins install @sesamespace/sesame
11
11
  ```
12
12
 
13
13
  ### 2. Get your API key
@@ -23,7 +23,8 @@ Add to your `openclaw.json`:
23
23
  "channels": {
24
24
  "sesame": {
25
25
  "enabled": true,
26
- "apiKey": "your-sesame-api-key"
26
+ "apiKey": "your-sesame-api-key",
27
+ "allowFrom": ["*"]
27
28
  }
28
29
  }
29
30
  }
package/dist/index.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Sesame Channel Plugin for OpenClaw
3
3
  *
4
4
  * Connects your OpenClaw agent to the Sesame messaging platform.
5
- * Install: openclaw plugins install @sesamespace/openclaw
5
+ * Install: openclaw plugins install @sesamespace/sesame
6
6
  *
7
7
  * Config (openclaw.json):
8
8
  * channels.sesame.enabled: true
package/dist/index.js CHANGED
@@ -2,7 +2,7 @@
2
2
  * Sesame Channel Plugin for OpenClaw
3
3
  *
4
4
  * Connects your OpenClaw agent to the Sesame messaging platform.
5
- * Install: openclaw plugins install @sesamespace/openclaw
5
+ * Install: openclaw plugins install @sesamespace/sesame
6
6
  *
7
7
  * Config (openclaw.json):
8
8
  * channels.sesame.enabled: true
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "sesame",
3
3
  "name": "Sesame",
4
- "version": "0.2.1",
4
+ "version": "0.2.2",
5
5
  "description": "Connect your OpenClaw agent to Sesame — the agent-native messaging platform",
6
6
  "channels": ["sesame"],
7
7
  "channel": {
package/package.json CHANGED
@@ -1,9 +1,14 @@
1
1
  {
2
2
  "name": "@sesamespace/sesame",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Sesame channel plugin for OpenClaw — connect your AI agent to the Sesame messaging platform",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "scripts": {
9
+ "build": "tsc",
10
+ "clean": "rm -rf dist"
11
+ },
7
12
  "license": "MIT",
8
13
  "repository": {
9
14
  "type": "git",