mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-21 10:16:44 +00:00
* docs(secrets): remove retired web credential paths * refactor(web): remove retired provider compatibility paths * refactor(providers): delete retired compatibility routes * refactor(secrets): remove retired credential aliases * refactor(plugin-sdk): delete retired compatibility surfaces * docs(plugin-sdk): remove retired migration guidance * chore(plugin-sdk): refresh rebased surface budgets * chore(plugin-sdk): refresh API removal baseline * refactor(compat): migrate retired internal callers * chore(plugin-sdk): refresh current-main baselines * test(config): migrate plugin-owned secret assertions * test(gateway): narrow plugin secret refs * fix(plugin-sdk): preserve private boundary type identity * chore(compat): remove stale sweep references * chore(lint): lower max-lines budget * refactor(secrets): remove unused web helper * build(plugin-sdk): drop removed compat entries * chore(plugin-sdk): refresh rebased API baseline * chore(plugin-sdk): use Linux API baseline hash * fix(plugin-sdk): preserve private bundled build entries * fix(plugin-sdk): package private runtime facades * fix(plugins): preserve external credential contracts
97 lines
2.4 KiB
JSON
97 lines
2.4 KiB
JSON
{
|
|
"name": "@openclaw/googlechat",
|
|
"version": "2026.7.2",
|
|
"description": "OpenClaw Google Chat channel plugin for spaces and direct messages.",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/openclaw/openclaw"
|
|
},
|
|
"type": "module",
|
|
"dependencies": {
|
|
"google-auth-library": "10.9.0",
|
|
"zod": "4.4.3"
|
|
},
|
|
"devDependencies": {
|
|
"@openclaw/plugin-sdk": "workspace:*",
|
|
"openclaw": "workspace:*"
|
|
},
|
|
"peerDependencies": {
|
|
"openclaw": ">=2026.7.2"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"openclaw": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"openclaw": {
|
|
"extensions": [
|
|
"./index.ts"
|
|
],
|
|
"setupEntry": "./setup-entry.ts",
|
|
"channel": {
|
|
"id": "googlechat",
|
|
"configuredState": {
|
|
"env": {
|
|
"anyOf": [
|
|
"GOOGLE_CHAT_SERVICE_ACCOUNT",
|
|
"GOOGLE_CHAT_SERVICE_ACCOUNT_FILE"
|
|
]
|
|
}
|
|
},
|
|
"approvalFlags": ["native"],
|
|
"label": "Google Chat",
|
|
"selectionLabel": "Google Chat (Chat API)",
|
|
"detailLabel": "Google Chat",
|
|
"docsPath": "/channels/googlechat",
|
|
"docsLabel": "googlechat",
|
|
"blurb": "Google Workspace Chat app with HTTP webhook.",
|
|
"aliases": [
|
|
"gchat",
|
|
"google-chat"
|
|
],
|
|
"order": 55,
|
|
"systemImage": "message.badge",
|
|
"markdownCapable": true,
|
|
"doctorCapabilities": {
|
|
"dmAllowFromMode": "nestedOnly",
|
|
"groupModel": "route",
|
|
"groupAllowFromFallbackToAllowFrom": false,
|
|
"warnOnEmptyGroupSenderAllowlist": false
|
|
},
|
|
"cliAddOptions": [
|
|
{
|
|
"flags": "--webhook-path <path>",
|
|
"description": "Google Chat webhook path"
|
|
},
|
|
{
|
|
"flags": "--webhook-url <url>",
|
|
"description": "Google Chat webhook URL"
|
|
},
|
|
{
|
|
"flags": "--audience-type <type>",
|
|
"description": "Google Chat audience type (app-url|project-number)"
|
|
},
|
|
{
|
|
"flags": "--audience <value>",
|
|
"description": "Google Chat audience value (app URL or project number)"
|
|
}
|
|
]
|
|
},
|
|
"install": {
|
|
"npmSpec": "@openclaw/googlechat",
|
|
"defaultChoice": "npm",
|
|
"minHostVersion": ">=2026.4.10"
|
|
},
|
|
"compat": {
|
|
"pluginApi": ">=2026.7.2"
|
|
},
|
|
"build": {
|
|
"openclawVersion": "2026.7.2"
|
|
},
|
|
"release": {
|
|
"publishToClawHub": true,
|
|
"publishToNpm": true
|
|
}
|
|
}
|
|
}
|