@composio/google 0.1.12-alpha.12 → 0.1.12-alpha.14

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.
Files changed (2) hide show
  1. package/README.md +0 -23
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -62,29 +62,6 @@ Check out our complete example implementations:
62
62
 
63
63
  - [Basic Google Integration](../../examples/google/src/index.ts)
64
64
 
65
- ## Provider Configuration
66
-
67
- The Google provider can be configured with various options:
68
-
69
- ```typescript
70
- const provider = new GoogleProvider({
71
- // Custom project configuration
72
- projectId: 'your-project-id',
73
- location: 'your-location',
74
- // Custom execution modifiers
75
- modifiers: {
76
- beforeExecute: params => {
77
- // Transform parameters before execution
78
- return params;
79
- },
80
- afterExecute: response => {
81
- // Transform response after execution
82
- return response;
83
- },
84
- },
85
- });
86
- ```
87
-
88
65
  ## API Reference
89
66
 
90
67
  ### GoogleProvider Class
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@composio/google",
3
- "version": "0.1.12-alpha.12",
3
+ "version": "0.1.12-alpha.14",
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.12-alpha.12",
31
+ "@composio/core": "0.1.12-alpha.14",
32
32
  "@google/genai": "^1.1.0"
33
33
  },
34
34
  "devDependencies": {
35
35
  "tsup": "^8.4.0",
36
36
  "typescript": "^5.8.3",
37
- "@composio/core": "0.1.12-alpha.12"
37
+ "@composio/core": "0.1.12-alpha.14"
38
38
  },
39
39
  "scripts": {
40
40
  "build": "tsup",