@aion0/forge 0.10.23 → 0.10.26
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/RELEASE_NOTES.md +13 -20
- package/app/api/connectors/[id]/test/route.ts +8 -274
- package/app/api/login-status/[id]/check/route.ts +22 -0
- package/app/api/login-status/route.ts +36 -0
- package/components/Dashboard.tsx +26 -0
- package/components/LoginStatusPanel.tsx +223 -0
- package/components/SettingsModal.tsx +0 -6
- package/docs/blackduck-openapi.yaml +9626 -0
- package/docs/tp-automation-api-v2.md +482 -0
- package/lib/auth/login-status.ts +291 -0
- package/lib/chat/protocols/http.ts +102 -8
- package/lib/chat/tool-dispatcher.ts +1 -1
- package/lib/connectors/test-runner.ts +239 -0
- package/lib/connectors/types.ts +58 -1
- package/lib/help-docs/18-chrome-mcp.md +22 -7
- package/lib/pipeline.ts +2 -2
- package/lib/settings.ts +17 -6
- package/lib/task-manager.ts +4 -4
- package/lib/telegram-bot.ts +3 -3
- package/lib/watch/watch-runner.ts +20 -2
- package/package.json +2 -1
|
@@ -200,9 +200,6 @@ interface Settings {
|
|
|
200
200
|
notifyOnFailure: boolean;
|
|
201
201
|
tunnelAutoStart: boolean;
|
|
202
202
|
telegramTunnelPassword: string;
|
|
203
|
-
taskModel: string;
|
|
204
|
-
pipelineModel: string;
|
|
205
|
-
telegramModel: string;
|
|
206
203
|
skipPermissions: boolean;
|
|
207
204
|
notificationRetentionDays: number;
|
|
208
205
|
maxConcurrentPipelines: number;
|
|
@@ -228,9 +225,6 @@ export default function SettingsModal({ onClose }: { onClose: () => void }) {
|
|
|
228
225
|
notifyOnFailure: true,
|
|
229
226
|
tunnelAutoStart: false,
|
|
230
227
|
telegramTunnelPassword: '',
|
|
231
|
-
taskModel: 'sonnet',
|
|
232
|
-
pipelineModel: 'sonnet',
|
|
233
|
-
telegramModel: 'sonnet',
|
|
234
228
|
skipPermissions: false,
|
|
235
229
|
notificationRetentionDays: 30,
|
|
236
230
|
maxConcurrentPipelines: 5,
|