@openclaw/tavily-plugin 2026.7.1-beta.1 → 2026.7.1-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.
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { n as runTavilySearch, t as runTavilyExtract } from "./tavily-client-Bfvn5wPe.js";
|
|
2
|
-
import { t as createTavilyWebSearchProvider } from "./tavily-search-provider-
|
|
2
|
+
import { t as createTavilyWebSearchProvider } from "./tavily-search-provider-Dv_dVc_h.js";
|
|
3
3
|
import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
|
|
4
4
|
import { jsonResult, readPositiveIntegerParam, readStringParam } from "openclaw/plugin-sdk/provider-web-search";
|
|
5
5
|
import { Type } from "typebox";
|
|
@@ -1,13 +1,10 @@
|
|
|
1
1
|
import { t as __exportAll } from "./rolldown-runtime-D7D4PA-g.js";
|
|
2
2
|
import { TAVILY_GENERIC_SEARCH_DESCRIPTION, TAVILY_GENERIC_SEARCH_SCHEMA, buildTavilyWebSearchProviderBase } from "./web-search-shared.js";
|
|
3
|
+
import { createLazyRuntimeModule } from "openclaw/plugin-sdk/lazy-runtime";
|
|
3
4
|
import { readPositiveIntegerParam } from "openclaw/plugin-sdk/param-readers";
|
|
4
5
|
//#region extensions/tavily/src/tavily-search-provider.ts
|
|
5
6
|
var tavily_search_provider_exports = /* @__PURE__ */ __exportAll({ createTavilyWebSearchProvider: () => createTavilyWebSearchProvider });
|
|
6
|
-
|
|
7
|
-
function loadTavilyClientModule() {
|
|
8
|
-
tavilyClientModulePromise ??= import("./tavily-client-Bfvn5wPe.js").then((n) => n.r);
|
|
9
|
-
return tavilyClientModulePromise;
|
|
10
|
-
}
|
|
7
|
+
const loadTavilyClientModule = createLazyRuntimeModule(() => import("./tavily-client-Bfvn5wPe.js").then((n) => n.r));
|
|
11
8
|
function createTavilyWebSearchProvider() {
|
|
12
9
|
return {
|
|
13
10
|
...buildTavilyWebSearchProviderBase(),
|
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
import { TAVILY_GENERIC_SEARCH_DESCRIPTION, TAVILY_GENERIC_SEARCH_SCHEMA, buildTavilyWebSearchProviderBase } from "./web-search-shared.js";
|
|
2
|
+
import { createLazyRuntimeModule } from "openclaw/plugin-sdk/lazy-runtime";
|
|
2
3
|
//#region extensions/tavily/web-search-contract-api.ts
|
|
3
|
-
|
|
4
|
-
function loadTavilySearchProviderModule() {
|
|
5
|
-
tavilySearchProviderModulePromise ??= import("./tavily-search-provider-CEMZvdRx.js").then((n) => n.n);
|
|
6
|
-
return tavilySearchProviderModulePromise;
|
|
7
|
-
}
|
|
4
|
+
const loadTavilySearchProviderModule = createLazyRuntimeModule(() => import("./tavily-search-provider-Dv_dVc_h.js").then((n) => n.n));
|
|
8
5
|
function createTavilyWebSearchProvider() {
|
|
9
6
|
return {
|
|
10
7
|
...buildTavilyWebSearchProviderBase(),
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { t as createTavilyWebSearchProvider } from "./tavily-search-provider-
|
|
1
|
+
import { t as createTavilyWebSearchProvider } from "./tavily-search-provider-Dv_dVc_h.js";
|
|
2
2
|
export { createTavilyWebSearchProvider };
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclaw/tavily-plugin",
|
|
3
|
-
"version": "2026.7.1-beta.
|
|
3
|
+
"version": "2026.7.1-beta.2",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@openclaw/tavily-plugin",
|
|
9
|
-
"version": "2026.7.1-beta.
|
|
9
|
+
"version": "2026.7.1-beta.2",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"typebox": "1.1.39"
|
|
12
12
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclaw/tavily-plugin",
|
|
3
|
-
"version": "2026.7.1-beta.
|
|
3
|
+
"version": "2026.7.1-beta.2",
|
|
4
4
|
"description": "OpenClaw Tavily plugin",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"dependencies": {
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
"allowInvalidConfigRecovery": true
|
|
19
19
|
},
|
|
20
20
|
"compat": {
|
|
21
|
-
"pluginApi": ">=2026.7.1-beta.
|
|
21
|
+
"pluginApi": ">=2026.7.1-beta.2"
|
|
22
22
|
},
|
|
23
23
|
"build": {
|
|
24
|
-
"openclawVersion": "2026.7.1-beta.
|
|
24
|
+
"openclawVersion": "2026.7.1-beta.2",
|
|
25
25
|
"bundledDist": false
|
|
26
26
|
},
|
|
27
27
|
"release": {
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"skills/**"
|
|
45
45
|
],
|
|
46
46
|
"peerDependencies": {
|
|
47
|
-
"openclaw": ">=2026.7.1-beta.
|
|
47
|
+
"openclaw": ">=2026.7.1-beta.2"
|
|
48
48
|
},
|
|
49
49
|
"peerDependenciesMeta": {
|
|
50
50
|
"openclaw": {
|