@composio/google 0.1.51 → 0.1.53
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.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +5 -5
package/dist/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BaseNonAgenticProvider,
|
|
1
|
+
import { BaseNonAgenticProvider, McpServerGetResponse, McpUrlResponse, Tool, ExecuteToolFnOptions, ExecuteToolModifiers } from '@composio/core';
|
|
2
2
|
import { FunctionDeclaration } from '@google/genai';
|
|
3
3
|
|
|
4
4
|
/**
|
|
@@ -32,7 +32,7 @@ type GoogleGenAIToolCollection = GoogleTool[];
|
|
|
32
32
|
* Google GenAI Provider for Composio SDK
|
|
33
33
|
* Implements the BaseNonAgenticProvider to wrap Composio tools for use with Google's GenAI API
|
|
34
34
|
*/
|
|
35
|
-
declare class GoogleProvider extends BaseNonAgenticProvider<GoogleGenAIToolCollection, GoogleTool> {
|
|
35
|
+
declare class GoogleProvider extends BaseNonAgenticProvider<GoogleGenAIToolCollection, GoogleTool, McpServerGetResponse> {
|
|
36
36
|
readonly name = "google";
|
|
37
37
|
/**
|
|
38
38
|
* Creates a new instance of the GoogleProvider.
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BaseNonAgenticProvider,
|
|
1
|
+
import { BaseNonAgenticProvider, McpServerGetResponse, McpUrlResponse, Tool, ExecuteToolFnOptions, ExecuteToolModifiers } from '@composio/core';
|
|
2
2
|
import { FunctionDeclaration } from '@google/genai';
|
|
3
3
|
|
|
4
4
|
/**
|
|
@@ -32,7 +32,7 @@ type GoogleGenAIToolCollection = GoogleTool[];
|
|
|
32
32
|
* Google GenAI Provider for Composio SDK
|
|
33
33
|
* Implements the BaseNonAgenticProvider to wrap Composio tools for use with Google's GenAI API
|
|
34
34
|
*/
|
|
35
|
-
declare class GoogleProvider extends BaseNonAgenticProvider<GoogleGenAIToolCollection, GoogleTool> {
|
|
35
|
+
declare class GoogleProvider extends BaseNonAgenticProvider<GoogleGenAIToolCollection, GoogleTool, McpServerGetResponse> {
|
|
36
36
|
readonly name = "google";
|
|
37
37
|
/**
|
|
38
38
|
* Creates a new instance of the GoogleProvider.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@composio/google",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.53",
|
|
4
4
|
"description": "Google GenAI Provider for Composio SDK",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -28,13 +28,13 @@
|
|
|
28
28
|
"author": "",
|
|
29
29
|
"license": "ISC",
|
|
30
30
|
"peerDependencies": {
|
|
31
|
-
"@composio/core": "0.1.
|
|
31
|
+
"@composio/core": "0.1.53",
|
|
32
32
|
"@google/genai": "^1.1.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"tsup": "^8.
|
|
36
|
-
"typescript": "^5.
|
|
37
|
-
"@composio/core": "0.1.
|
|
35
|
+
"tsup": "^8.5.0",
|
|
36
|
+
"typescript": "^5.9.2",
|
|
37
|
+
"@composio/core": "0.1.53"
|
|
38
38
|
},
|
|
39
39
|
"scripts": {
|
|
40
40
|
"clean": "git clean -xdf node_modules",
|