bereach-openclaw 1.5.0-beta.1 → 1.5.0-beta.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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "bereach-openclaw",
3
3
  "name": "BeReach",
4
- "version": "1.5.0-beta.1",
4
+ "version": "1.5.0-beta.2",
5
5
  "description": "LinkedIn outreach automation — 75+ tools, hook-based enforcement, dynamic context",
6
6
  "configSchema": {
7
7
  "type": "object",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bereach-openclaw",
3
- "version": "1.5.0-beta.1",
3
+ "version": "1.5.0-beta.2",
4
4
  "description": "BeReach LinkedIn automation plugin for OpenClaw",
5
5
  "license": "AGPL-3.0",
6
6
  "exports": {
@@ -9,8 +9,8 @@
9
9
  // API constants (replaced at build time by build-plugins.js)
10
10
  // ---------------------------------------------------------------------------
11
11
 
12
- export const API_BASE = "https://api-staging.bereach.ai";
13
- export const CHAT_BASE = "https://chat-staging.bereach.ai";
12
+ export const API_BASE = "https://api.bereach.ai";
13
+ export const CHAT_BASE = "https://chat.bereach.ai";
14
14
  export const PRICING_URL = "https://bereach.ai/pricing";
15
15
 
16
16
  // ---------------------------------------------------------------------------
@@ -2,7 +2,7 @@ import { definitions, type ToolDefinition } from "./definitions";
2
2
  import { cacheSet } from "../hooks/cache";
3
3
  import { resolveApiKey } from "../index";
4
4
 
5
- const API_BASE = "https://api-staging.bereach.ai";
5
+ const API_BASE = "https://api.bereach.ai";
6
6
 
7
7
  const MAX_RETRIES = 2;
8
8