veryfront 0.1.271 → 0.1.273
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/esm/deno.js +1 -1
- package/esm/src/integrations/_data.js +48 -48
- package/esm/src/integrations/remote-tools.d.ts +1 -1
- package/esm/src/integrations/remote-tools.js +2 -2
- package/esm/src/utils/version-constant.d.ts +1 -1
- package/esm/src/utils/version-constant.js +1 -1
- package/package.json +1 -1
- package/src/deno.js +1 -1
- package/src/src/integrations/_data.ts +48 -48
- package/src/src/integrations/remote-tools.ts +2 -2
- package/src/src/utils/version-constant.ts +1 -1
|
@@ -10,7 +10,7 @@ import type { ToolDefinition } from "../tool/index.js";
|
|
|
10
10
|
export declare function getRemoteIntegrationToolDefinitions(): Promise<ToolDefinition[]>;
|
|
11
11
|
/**
|
|
12
12
|
* Check if a tool name looks like a remote integration tool.
|
|
13
|
-
* Integration tools use "
|
|
13
|
+
* Integration tools use "integration__tool_id" format (double underscore separator).
|
|
14
14
|
*/
|
|
15
15
|
export declare function isRemoteIntegrationTool(toolName: string): boolean;
|
|
16
16
|
/**
|
|
@@ -131,10 +131,10 @@ export async function getRemoteIntegrationToolDefinitions() {
|
|
|
131
131
|
}
|
|
132
132
|
/**
|
|
133
133
|
* Check if a tool name looks like a remote integration tool.
|
|
134
|
-
* Integration tools use "
|
|
134
|
+
* Integration tools use "integration__tool_id" format (double underscore separator).
|
|
135
135
|
*/
|
|
136
136
|
export function isRemoteIntegrationTool(toolName) {
|
|
137
|
-
return toolName.includes("
|
|
137
|
+
return toolName.includes("__");
|
|
138
138
|
}
|
|
139
139
|
/**
|
|
140
140
|
* Execute a remote integration tool via the API.
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.1.
|
|
1
|
+
export declare const VERSION = "0.1.273";
|
|
2
2
|
//# sourceMappingURL=version-constant.d.ts.map
|
package/package.json
CHANGED