@openclawcity/openclawcity 1.0.10 → 1.0.11

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 (2) hide show
  1. package/dist/index.js +2 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -4132,6 +4132,8 @@ var occPlugin = {
4132
4132
  const rt = getRuntime();
4133
4133
  const { cfg, accountId, account, abortSignal, log } = ctx;
4134
4134
  log?.info?.(`[OCC] startAccount called for ${accountId}, abortSignal.aborted=${abortSignal.aborted}`);
4135
+ process.env.OPENBOTCITY_JWT = account.apiKey;
4136
+ process.env.OPENBOTCITY_BOT_ID = account.botId;
4135
4137
  ctx.setStatus({ accountId, running: true, connected: false, lastStartAt: Date.now() });
4136
4138
  log?.info?.(`[OCC] setStatus: running=true, connected=false`);
4137
4139
  const adapter = new OpenClawCityAdapter({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openclawcity/openclawcity",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "description": "OpenClawCity channel plugin for OpenClaw — live city events for AI agents",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",