forked from googleworkspace/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
75 lines (75 loc) · 2.3 KB
/
plugin.json
File metadata and controls
75 lines (75 loc) · 2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"id": "",
"slug": "gws",
"name": "Google Workspace CLI",
"version": "0.22.5",
"description": "Google Workspace CLI — Gmail, Calendar, Drive, Sheets, Docs, Chat, Meet",
"author": "NeboLoop",
"platforms": {
"darwin-arm64": {
"binaryName": "gws",
"sha256": "0f27b8b0815bf09cdf95da48d3c604f05ceb8f16bf5c9f0ba355b1f957cdd47e",
"signature": "",
"size": 15371280,
"downloadUrl": ""
},
"darwin-amd64": {
"binaryName": "gws",
"sha256": "cfaf3c184ffe4ed4609cc6fbd75cc64ffa97b4cb7a71ceb7302ab8e89cd3f163",
"signature": "",
"size": 16210932,
"downloadUrl": ""
},
"linux-arm64": {
"binaryName": "gws",
"sha256": "b68337faf1436fb2b3a287207cd57fef784a20fb4ab4f2429e51c4e0cfa0b50b",
"signature": "",
"size": 18113600,
"downloadUrl": ""
},
"linux-amd64": {
"binaryName": "gws",
"sha256": "ab59c4bab4e7848740ba8cc3ef186152dab90121c45835b49bd1bf2a5c259b86",
"signature": "",
"size": 19259000,
"downloadUrl": ""
},
"windows-amd64": {
"binaryName": "gws.exe",
"sha256": "82ad48dd28564be969174aaef3e3f99816f959bf2519eeeb4ab77d84f9fa9c67",
"signature": "",
"size": 16743424,
"downloadUrl": ""
}
},
"signingKeyId": "",
"envVar": "GWS_BIN",
"events": [
{
"name": "email.new",
"description": "Fires when a new email arrives in Gmail",
"command": "gmail +watch --project neboloop",
"multiplexed": false
},
{
"name": "calendar.event",
"description": "Fires on calendar event changes (created, updated, deleted)",
"command": "events +subscribe --target //calendar.googleapis.com/calendars/primary --event-types google.workspace.calendar.event.v1.created,google.workspace.calendar.event.v1.updated,google.workspace.calendar.event.v1.deleted --project neboloop",
"multiplexed": true
}
],
"auth": {
"type": "oauth_cli",
"label": "Google Account",
"description": "Authenticate with your Google Workspace account to access Gmail, Calendar, Drive, and more.",
"commands": {
"login": "auth login --full",
"status": "auth status",
"logout": "auth logout"
},
"env": {
"GOOGLE_WORKSPACE_CLI_CLIENT_ID": "",
"GOOGLE_WORKSPACE_CLI_CLIENT_SECRET": ""
}
}
}