@elizaos/plugin-google 2.0.3-beta.2 → 2.0.3-beta.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/plugin-google",
3
- "version": "2.0.3-beta.2",
3
+ "version": "2.0.3-beta.3",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -30,6 +30,7 @@
30
30
  }
31
31
  },
32
32
  "files": [
33
+ "registry-entry.json",
33
34
  "dist"
34
35
  ],
35
36
  "publishConfig": {
@@ -46,7 +47,7 @@
46
47
  "typecheck": "tsgo --noEmit"
47
48
  },
48
49
  "dependencies": {
49
- "@elizaos/core": "2.0.3-beta.2",
50
+ "@elizaos/core": "2.0.3-beta.3",
50
51
  "google-auth-library": "^10.0.0",
51
52
  "googleapis": "^169.0.0",
52
53
  "zod": "^4.4.3"
@@ -85,5 +86,5 @@
85
86
  }
86
87
  }
87
88
  },
88
- "gitHead": "82fe0f44215954c2417328203f5bd6510985c1fc"
89
+ "gitHead": "f54b0f4eaed317d59fa7dbcdce20f4cdb0734420"
89
90
  }
@@ -0,0 +1,82 @@
1
+ {
2
+ "id": "google",
3
+ "name": "Google",
4
+ "description": "Google connector for Gmail, Calendar, Drive, and Meet through one OAuth grant. Uses Eliza Cloud OAuth by default; falls back to local OAuth2 with developer credentials when GOOGLE_CLIENT_ID/SECRET are set on the agent.",
5
+ "npmName": "@elizaos/plugin-google",
6
+ "version": "2.0.0-beta.0",
7
+ "source": "bundled",
8
+ "tags": [
9
+ "connector",
10
+ "productivity",
11
+ "google",
12
+ "gmail",
13
+ "calendar",
14
+ "drive",
15
+ "meet"
16
+ ],
17
+ "config": {
18
+ "GOOGLE_CLIENT_ID": {
19
+ "type": "string",
20
+ "required": false,
21
+ "sensitive": false,
22
+ "label": "OAuth Client ID",
23
+ "help": "Google OAuth2 client ID for local-OAuth fallback. Not needed when using Eliza Cloud OAuth.",
24
+ "advanced": true
25
+ },
26
+ "GOOGLE_CLIENT_SECRET": {
27
+ "type": "secret",
28
+ "required": false,
29
+ "sensitive": true,
30
+ "label": "OAuth Client Secret",
31
+ "help": "Google OAuth2 client secret for local-OAuth fallback. Not needed when using Eliza Cloud OAuth.",
32
+ "advanced": true
33
+ },
34
+ "GOOGLE_REDIRECT_URI": {
35
+ "type": "url",
36
+ "required": false,
37
+ "sensitive": false,
38
+ "label": "Redirect URI",
39
+ "help": "OAuth2 redirect URI for local-OAuth fallback. A loopback URL is recommended for local auth.",
40
+ "advanced": true
41
+ }
42
+ },
43
+ "render": {
44
+ "visible": true,
45
+ "pinTo": [],
46
+ "style": "setup-panel",
47
+ "icon": "Mail",
48
+ "group": "connector",
49
+ "groupOrder": 1,
50
+ "actions": ["enable", "configure", "setup-guide"]
51
+ },
52
+ "resources": {
53
+ "homepage": "https://github.com/elizaos-plugins/plugin-google#readme",
54
+ "repository": "https://github.com/elizaos-plugins/plugin-google",
55
+ "setupGuideUrl": "https://github.com/elizaos-plugins/plugin-google#readme"
56
+ },
57
+ "dependsOn": [],
58
+ "kind": "connector",
59
+ "subtype": "email",
60
+ "auth": {
61
+ "kind": "oauth",
62
+ "credentialKeys": [
63
+ "GOOGLE_CLIENT_ID",
64
+ "GOOGLE_CLIENT_SECRET",
65
+ "GOOGLE_REDIRECT_URI"
66
+ ]
67
+ },
68
+ "accounts": {
69
+ "owner": {
70
+ "supported": true,
71
+ "authKind": "oauth-cloud",
72
+ "credentialKeys": [],
73
+ "notes": "The user's own Google account, connected via Eliza Cloud OAuth so the agent can read and act on the user's Gmail, Calendar, Drive, and Meet on the user's behalf."
74
+ },
75
+ "agent": {
76
+ "supported": true,
77
+ "authKind": "oauth-cloud",
78
+ "credentialKeys": [],
79
+ "notes": "A separate Google account that represents the agent's own identity. Same OAuth flow, different Google account at the OAuth screen."
80
+ }
81
+ }
82
+ }