web-search-plus-plugin 1.3.0 → 1.3.1

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/index.ts CHANGED
@@ -43,7 +43,7 @@ export default definePluginEntry({
43
43
  register(api) {
44
44
  // Bridge OpenClaw config fields to env vars expected by search.py
45
45
  const configEnv: Record<string, string> = {};
46
- const pluginConfig: Record<string, string> = (api as any)?.config ?? {};
46
+ const pluginConfig: Record<string, string> = (api.pluginConfig ?? {}) as Record<string, string>;
47
47
  const configKeyMap: Record<string, string> = {
48
48
  serperApiKey: "SERPER_API_KEY",
49
49
  tavilyApiKey: "TAVILY_API_KEY",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "web-search-plus-plugin",
3
3
  "name": "Web Search Plus",
4
- "version": "1.3.0",
4
+ "version": "1.3.1",
5
5
  "description": "Multi-provider web search (Serper/Google, Tavily, Querit/Multilingual AI Search, Exa/Neural+Deep, Perplexity, You.com, SearXNG) with intelligent auto-routing",
6
6
  "configSchema": {
7
7
  "type": "object",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "web-search-plus-plugin",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "OpenClaw plugin: multi-provider web search (Serper/Google, Tavily, Querit/Multilingual AI Search, Exa/Neural+Deep, Perplexity, You.com, SearXNG) with intelligent auto-routing",
5
5
  "type": "module",
6
6
  "main": "index.ts",