@elizaos/plugin-google-chat 2.0.0-alpha.3 → 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.
Files changed (1) hide show
  1. package/package.json +73 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/plugin-google-chat",
3
- "version": "2.0.0-alpha.3",
3
+ "version": "2.0.0-alpha.5",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -22,7 +22,12 @@
22
22
  "scripts": {
23
23
  "build": "bun run build.ts",
24
24
  "test": "vitest run",
25
- "test:watch": "vitest"
25
+ "test:watch": "vitest",
26
+ "lint": "bunx @biomejs/biome check --write --unsafe .",
27
+ "lint:check": "bunx @biomejs/biome check .",
28
+ "format": "bunx @biomejs/biome format --write .",
29
+ "format:check": "bunx @biomejs/biome format .",
30
+ "typecheck": "tsc --noEmit"
26
31
  },
27
32
  "dependencies": {
28
33
  "@elizaos/core": "2.0.0-alpha.3",
@@ -32,12 +37,77 @@
32
37
  "devDependencies": {
33
38
  "@types/node": "^20.0.0",
34
39
  "typescript": "^5.3.0",
35
- "vitest": "^4.0.0"
40
+ "vitest": "^4.0.0",
41
+ "@biomejs/biome": "^2.3.11"
36
42
  },
37
43
  "milaidy": {
38
44
  "platforms": [
39
45
  "node"
40
46
  ],
41
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
+ }
42
112
  }
43
113
  }