@mcinteerj/openclaw-gmail 1.2.1 → 1.2.3
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 +2 -2
- package/src/channel.ts +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mcinteerj/openclaw-gmail",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.3",
|
|
4
4
|
"description": "Gmail channel plugin for OpenClaw - uses gog CLI for secure Gmail access",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.ts",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"./index.ts"
|
|
23
23
|
],
|
|
24
24
|
"channel": {
|
|
25
|
-
"id": "gmail",
|
|
25
|
+
"id": "openclaw-gmail",
|
|
26
26
|
"label": "Gmail",
|
|
27
27
|
"selectionLabel": "Gmail (gog)",
|
|
28
28
|
"detailLabel": "Gmail",
|
package/src/channel.ts
CHANGED
|
@@ -150,10 +150,11 @@ async function dispatchGmailMessage(
|
|
|
150
150
|
import { gmailOnboardingAdapter } from "./onboarding.js";
|
|
151
151
|
|
|
152
152
|
export const gmailPlugin: ChannelPlugin<ResolvedGmailAccount> = {
|
|
153
|
-
id: "gmail",
|
|
153
|
+
id: "openclaw-gmail",
|
|
154
154
|
onboarding: gmailOnboardingAdapter,
|
|
155
155
|
meta: {
|
|
156
156
|
...meta,
|
|
157
|
+
id: "openclaw-gmail",
|
|
157
158
|
showConfigured: true,
|
|
158
159
|
},
|
|
159
160
|
capabilities: {
|