@elizaos/plugin-google-chat 2.0.0-alpha.4 → 2.0.0-alpha.5
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 +65 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/plugin-google-chat",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -45,5 +45,69 @@
|
|
|
45
45
|
"node"
|
|
46
46
|
],
|
|
47
47
|
"runtime": "node"
|
|
48
|
+
},
|
|
49
|
+
"agentConfig": {
|
|
50
|
+
"pluginParameters": {
|
|
51
|
+
"GOOGLE_CHAT_SERVICE_ACCOUNT": {
|
|
52
|
+
"type": "string",
|
|
53
|
+
"description": "Service account credentials",
|
|
54
|
+
"required": false,
|
|
55
|
+
"sensitive": false
|
|
56
|
+
},
|
|
57
|
+
"GOOGLE_CHAT_SERVICE_ACCOUNT_FILE": {
|
|
58
|
+
"type": "string",
|
|
59
|
+
"description": "Service account credentials",
|
|
60
|
+
"required": false,
|
|
61
|
+
"sensitive": false
|
|
62
|
+
},
|
|
63
|
+
"GOOGLE_APPLICATION_CREDENTIALS": {
|
|
64
|
+
"type": "string",
|
|
65
|
+
"description": "Credentials file path or JSON",
|
|
66
|
+
"required": false,
|
|
67
|
+
"sensitive": true
|
|
68
|
+
},
|
|
69
|
+
"GOOGLE_CHAT_AUDIENCE_TYPE": {
|
|
70
|
+
"type": "string",
|
|
71
|
+
"description": "Audience/auth scope",
|
|
72
|
+
"required": false,
|
|
73
|
+
"sensitive": false
|
|
74
|
+
},
|
|
75
|
+
"GOOGLE_CHAT_AUDIENCE": {
|
|
76
|
+
"type": "string",
|
|
77
|
+
"description": "Audience/auth scope",
|
|
78
|
+
"required": false,
|
|
79
|
+
"sensitive": false
|
|
80
|
+
},
|
|
81
|
+
"GOOGLE_CHAT_WEBHOOK_PATH": {
|
|
82
|
+
"type": "string",
|
|
83
|
+
"description": "Webhook path",
|
|
84
|
+
"required": false,
|
|
85
|
+
"sensitive": false
|
|
86
|
+
},
|
|
87
|
+
"GOOGLE_CHAT_SPACES": {
|
|
88
|
+
"type": "string",
|
|
89
|
+
"description": "Comma-separated space/room list",
|
|
90
|
+
"required": false,
|
|
91
|
+
"sensitive": false
|
|
92
|
+
},
|
|
93
|
+
"GOOGLE_CHAT_REQUIRE_MENTION": {
|
|
94
|
+
"type": "boolean",
|
|
95
|
+
"description": "Only respond when mentioned",
|
|
96
|
+
"required": false,
|
|
97
|
+
"sensitive": false
|
|
98
|
+
},
|
|
99
|
+
"GOOGLE_CHAT_ENABLED": {
|
|
100
|
+
"type": "boolean",
|
|
101
|
+
"description": "Enable or disable this feature",
|
|
102
|
+
"required": false,
|
|
103
|
+
"sensitive": false
|
|
104
|
+
},
|
|
105
|
+
"GOOGLE_CHAT_BOT_USER": {
|
|
106
|
+
"type": "string",
|
|
107
|
+
"description": "Bot user identifier",
|
|
108
|
+
"required": false,
|
|
109
|
+
"sensitive": false
|
|
110
|
+
}
|
|
111
|
+
}
|
|
48
112
|
}
|
|
49
113
|
}
|