@poncho-ai/cli 0.22.0 → 0.22.1

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@poncho-ai/cli",
3
- "version": "0.22.0",
3
+ "version": "0.22.1",
4
4
  "description": "CLI for building and deploying AI agents",
5
5
  "repository": {
6
6
  "type": "git",
@@ -27,8 +27,8 @@
27
27
  "react": "^19.2.4",
28
28
  "react-devtools-core": "^6.1.5",
29
29
  "yaml": "^2.8.1",
30
- "@poncho-ai/harness": "0.20.11",
31
- "@poncho-ai/messaging": "0.3.0",
30
+ "@poncho-ai/harness": "0.20.12",
31
+ "@poncho-ai/messaging": "0.4.0",
32
32
  "@poncho-ai/sdk": "1.4.1"
33
33
  },
34
34
  "devDependencies": {
package/src/index.ts CHANGED
@@ -2479,6 +2479,7 @@ export const createRequestHandler = async (options?: {
2479
2479
  const adapter = new TelegramAdapter({
2480
2480
  botTokenEnv: channelConfig.botTokenEnv,
2481
2481
  webhookSecretEnv: channelConfig.webhookSecretEnv,
2482
+ allowedUserIds: channelConfig.allowedUserIds,
2482
2483
  });
2483
2484
  const bridge = new AgentBridge({
2484
2485
  adapter,