expo-openclaw-chat 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.

Potentially problematic release.


This version of expo-openclaw-chat might be problematic. Click here for more details.

package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-openclaw-chat",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Minimal chat SDK for Expo apps to connect to OpenClaw gateway",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
@@ -73,6 +73,6 @@
73
73
  "homepage": "https://github.com/brunobar79/expo-openclaw-chat",
74
74
  "repository": {
75
75
  "type": "git",
76
- "url": "https://github.com/brunobar79/expo-openclaw-chat"
76
+ "url": "git+https://github.com/brunobar79/expo-openclaw-chat.git"
77
77
  }
78
78
  }
@@ -69,7 +69,7 @@ export interface ChatInstance {
69
69
  export function createChat(config: CreateChatConfig): ChatInstance {
70
70
  const {
71
71
  gatewayUrl,
72
- sessionKey = `chat-${Date.now().toString(36)}`,
72
+ sessionKey = `agent:main:chat-${Date.now().toString(36)}`,
73
73
  title,
74
74
  placeholder,
75
75
  showImagePicker,