@elizaos/plugin-google-chat 2.0.3-beta.2 → 2.0.3-beta.4
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 +4 -3
- package/registry-entry.json +127 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/plugin-google-chat",
|
|
3
|
-
"version": "2.0.3-beta.
|
|
3
|
+
"version": "2.0.3-beta.4",
|
|
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
|
"auto-enable.ts"
|
|
35
36
|
],
|
|
@@ -55,7 +56,7 @@
|
|
|
55
56
|
"typecheck": "tsgo --noEmit"
|
|
56
57
|
},
|
|
57
58
|
"dependencies": {
|
|
58
|
-
"@elizaos/core": "2.0.3-beta.
|
|
59
|
+
"@elizaos/core": "2.0.3-beta.4",
|
|
59
60
|
"google-auth-library": "^10.0.0",
|
|
60
61
|
"zod": "^4.4.3"
|
|
61
62
|
},
|
|
@@ -135,5 +136,5 @@
|
|
|
135
136
|
}
|
|
136
137
|
}
|
|
137
138
|
},
|
|
138
|
-
"gitHead": "
|
|
139
|
+
"gitHead": "f76f55793a0fb8d6b869dd8ddce03970de061e34"
|
|
139
140
|
}
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "google-chat",
|
|
3
|
+
"name": "Google Chat",
|
|
4
|
+
"description": "Google Chat connector for bots, spaces, and message-driven workflows.",
|
|
5
|
+
"npmName": "@elizaos/plugin-google-chat",
|
|
6
|
+
"version": "2.0.0-beta.0",
|
|
7
|
+
"source": "bundled",
|
|
8
|
+
"tags": [
|
|
9
|
+
"connector",
|
|
10
|
+
"messaging",
|
|
11
|
+
"google-chat",
|
|
12
|
+
"productivity",
|
|
13
|
+
"social",
|
|
14
|
+
"social-chat",
|
|
15
|
+
"google",
|
|
16
|
+
"chat"
|
|
17
|
+
],
|
|
18
|
+
"config": {
|
|
19
|
+
"GOOGLE_CHAT_SPACES": {
|
|
20
|
+
"type": "string",
|
|
21
|
+
"required": false,
|
|
22
|
+
"sensitive": false,
|
|
23
|
+
"label": "Chat Spaces",
|
|
24
|
+
"help": "Comma-separated space/room list",
|
|
25
|
+
"advanced": false
|
|
26
|
+
},
|
|
27
|
+
"GOOGLE_CHAT_ENABLED": {
|
|
28
|
+
"type": "boolean",
|
|
29
|
+
"required": false,
|
|
30
|
+
"sensitive": false,
|
|
31
|
+
"label": "Chat Enabled",
|
|
32
|
+
"help": "Enable or disable this feature",
|
|
33
|
+
"advanced": false
|
|
34
|
+
},
|
|
35
|
+
"GOOGLE_CHAT_AUDIENCE": {
|
|
36
|
+
"type": "string",
|
|
37
|
+
"required": false,
|
|
38
|
+
"sensitive": false,
|
|
39
|
+
"label": "Chat Audience",
|
|
40
|
+
"help": "Audience/auth scope",
|
|
41
|
+
"advanced": false
|
|
42
|
+
},
|
|
43
|
+
"GOOGLE_CHAT_BOT_USER": {
|
|
44
|
+
"type": "string",
|
|
45
|
+
"required": false,
|
|
46
|
+
"sensitive": false,
|
|
47
|
+
"label": "Chat Bot User",
|
|
48
|
+
"help": "Bot user identifier",
|
|
49
|
+
"advanced": false
|
|
50
|
+
},
|
|
51
|
+
"GOOGLE_CHAT_WEBHOOK_PATH": {
|
|
52
|
+
"type": "file-path",
|
|
53
|
+
"required": false,
|
|
54
|
+
"sensitive": false,
|
|
55
|
+
"label": "Chat Webhook Path",
|
|
56
|
+
"help": "Webhook path",
|
|
57
|
+
"advanced": false
|
|
58
|
+
},
|
|
59
|
+
"GOOGLE_CHAT_AUDIENCE_TYPE": {
|
|
60
|
+
"type": "string",
|
|
61
|
+
"required": false,
|
|
62
|
+
"sensitive": false,
|
|
63
|
+
"label": "Chat Audience Type",
|
|
64
|
+
"help": "Audience/auth scope",
|
|
65
|
+
"advanced": false
|
|
66
|
+
},
|
|
67
|
+
"GOOGLE_CHAT_REQUIRE_MENTION": {
|
|
68
|
+
"type": "boolean",
|
|
69
|
+
"required": false,
|
|
70
|
+
"sensitive": false,
|
|
71
|
+
"label": "Chat Require Mention",
|
|
72
|
+
"help": "Only respond when mentioned",
|
|
73
|
+
"advanced": false
|
|
74
|
+
},
|
|
75
|
+
"GOOGLE_CHAT_SERVICE_ACCOUNT": {
|
|
76
|
+
"type": "number",
|
|
77
|
+
"required": false,
|
|
78
|
+
"sensitive": false,
|
|
79
|
+
"label": "Chat Service Account",
|
|
80
|
+
"help": "Service account credentials",
|
|
81
|
+
"advanced": false,
|
|
82
|
+
"min": 0
|
|
83
|
+
},
|
|
84
|
+
"GOOGLE_APPLICATION_CREDENTIALS": {
|
|
85
|
+
"type": "secret",
|
|
86
|
+
"required": false,
|
|
87
|
+
"sensitive": true,
|
|
88
|
+
"label": "Application Credentials",
|
|
89
|
+
"help": "Credentials file path or JSON",
|
|
90
|
+
"advanced": false
|
|
91
|
+
},
|
|
92
|
+
"GOOGLE_CHAT_SERVICE_ACCOUNT_FILE": {
|
|
93
|
+
"type": "file-path",
|
|
94
|
+
"required": false,
|
|
95
|
+
"sensitive": false,
|
|
96
|
+
"label": "Chat Service Account File",
|
|
97
|
+
"help": "Service account credentials",
|
|
98
|
+
"advanced": false
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
"render": {
|
|
102
|
+
"visible": true,
|
|
103
|
+
"pinTo": [],
|
|
104
|
+
"style": "setup-panel",
|
|
105
|
+
"icon": "MessagesSquare",
|
|
106
|
+
"group": "connector",
|
|
107
|
+
"groupOrder": 1,
|
|
108
|
+
"actions": [
|
|
109
|
+
"enable",
|
|
110
|
+
"configure",
|
|
111
|
+
"setup-guide"
|
|
112
|
+
]
|
|
113
|
+
},
|
|
114
|
+
"resources": {
|
|
115
|
+
"setupGuideUrl": "https://docs.eliza.ai/plugin-setup-guide#google-chat"
|
|
116
|
+
},
|
|
117
|
+
"dependsOn": [],
|
|
118
|
+
"kind": "connector",
|
|
119
|
+
"subtype": "messaging",
|
|
120
|
+
"auth": {
|
|
121
|
+
"kind": "token",
|
|
122
|
+
"credentialKeys": []
|
|
123
|
+
},
|
|
124
|
+
"channels": [
|
|
125
|
+
"googlechat"
|
|
126
|
+
]
|
|
127
|
+
}
|