veryfront 0.1.272 → 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  export default {
2
2
  "name": "veryfront",
3
- "version": "0.1.272",
3
+ "version": "0.1.273",
4
4
  "license": "Apache-2.0",
5
5
  "nodeModulesDir": "auto",
6
6
  "workspace": [
@@ -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 "integration:tool-id" format.
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 "integration:tool-id" format.
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.272";
1
+ export declare const VERSION = "0.1.273";
2
2
  //# sourceMappingURL=version-constant.d.ts.map
@@ -1,3 +1,3 @@
1
1
  // Keep in sync with deno.json version.
2
2
  // scripts/release.ts updates this constant during releases.
3
- export const VERSION = "0.1.272";
3
+ export const VERSION = "0.1.273";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "veryfront",
3
- "version": "0.1.272",
3
+ "version": "0.1.273",
4
4
  "description": "The simplest way to build AI-powered apps",
5
5
  "keywords": [
6
6
  "react",
package/src/deno.js CHANGED
@@ -1,6 +1,6 @@
1
1
  export default {
2
2
  "name": "veryfront",
3
- "version": "0.1.272",
3
+ "version": "0.1.273",
4
4
  "license": "Apache-2.0",
5
5
  "nodeModulesDir": "auto",
6
6
  "workspace": [
@@ -177,10 +177,10 @@ export async function getRemoteIntegrationToolDefinitions(): Promise<
177
177
 
178
178
  /**
179
179
  * Check if a tool name looks like a remote integration tool.
180
- * Integration tools use "integration:tool-id" format.
180
+ * Integration tools use "integration__tool_id" format (double underscore separator).
181
181
  */
182
182
  export function isRemoteIntegrationTool(toolName: string): boolean {
183
- return toolName.includes(":");
183
+ return toolName.includes("__");
184
184
  }
185
185
 
186
186
  /**
@@ -1,3 +1,3 @@
1
1
  // Keep in sync with deno.json version.
2
2
  // scripts/release.ts updates this constant during releases.
3
- export const VERSION = "0.1.272";
3
+ export const VERSION = "0.1.273";