@composio/google 0.9.2 → 0.9.3
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.cjs +1 -1
- package/dist/index.mjs +2 -2
- package/package.json +11 -2
package/dist/index.cjs
CHANGED
|
@@ -199,7 +199,7 @@ var GoogleProvider = class extends _composio_core.BaseNonAgenticProvider {
|
|
|
199
199
|
*/
|
|
200
200
|
async executeToolCall(userId, tool, options, modifiers) {
|
|
201
201
|
const payload = {
|
|
202
|
-
arguments: tool.args,
|
|
202
|
+
arguments: (0, _composio_core.normalizeToolArguments)(tool.args, tool.name),
|
|
203
203
|
connectedAccountId: options?.connectedAccountId,
|
|
204
204
|
customAuthParams: options?.customAuthParams,
|
|
205
205
|
customConnectionData: options?.customConnectionData,
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BaseNonAgenticProvider } from "@composio/core";
|
|
1
|
+
import { BaseNonAgenticProvider, normalizeToolArguments } from "@composio/core";
|
|
2
2
|
|
|
3
3
|
//#region src/index.ts
|
|
4
4
|
/**
|
|
@@ -199,7 +199,7 @@ var GoogleProvider = class extends BaseNonAgenticProvider {
|
|
|
199
199
|
*/
|
|
200
200
|
async executeToolCall(userId, tool, options, modifiers) {
|
|
201
201
|
const payload = {
|
|
202
|
-
arguments: tool.args,
|
|
202
|
+
arguments: normalizeToolArguments(tool.args, tool.name),
|
|
203
203
|
connectedAccountId: options?.connectedAccountId,
|
|
204
204
|
customAuthParams: options?.customAuthParams,
|
|
205
205
|
customConnectionData: options?.customConnectionData,
|
package/package.json
CHANGED
|
@@ -1,8 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@composio/google",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.3",
|
|
4
4
|
"description": "Google GenAI Provider for Composio SDK",
|
|
5
5
|
"main": "dist/index.mjs",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/ComposioHQ/composio.git",
|
|
9
|
+
"directory": "ts/packages/providers/google"
|
|
10
|
+
},
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/ComposioHQ/composio/issues"
|
|
13
|
+
},
|
|
14
|
+
"homepage": "https://github.com/ComposioHQ/composio/tree/main/ts/packages/providers/google#readme",
|
|
6
15
|
"publishConfig": {
|
|
7
16
|
"access": "public"
|
|
8
17
|
},
|
|
@@ -42,7 +51,7 @@
|
|
|
42
51
|
"devDependencies": {
|
|
43
52
|
"tsdown": "^0.18.4",
|
|
44
53
|
"typescript": "^5.9.2",
|
|
45
|
-
"@composio/core": "0.
|
|
54
|
+
"@composio/core": "0.11.0"
|
|
46
55
|
},
|
|
47
56
|
"scripts": {
|
|
48
57
|
"clean": "git clean -xdf node_modules",
|