@poncho-ai/cli 0.22.0 → 0.22.2
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/.turbo/turbo-build.log +6 -6
- package/CHANGELOG.md +17 -0
- package/dist/chunk-VI6NA7HZ.js +10508 -0
- package/dist/cli.js +1 -1
- package/dist/index.js +1 -1
- package/dist/run-interactive-ink-XBWU5NF4.js +2074 -0
- package/package.json +3 -3
- package/src/index.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@poncho-ai/cli",
|
|
3
|
-
"version": "0.22.
|
|
3
|
+
"version": "0.22.2",
|
|
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.
|
|
31
|
-
"@poncho-ai/messaging": "0.
|
|
30
|
+
"@poncho-ai/harness": "0.20.13",
|
|
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,
|