agent-tower 0.4.1 → 0.4.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/dist/routes/filesystem.js +1 -1
- package/dist/routes/filesystem.js.map +1 -1
- package/dist/web/assets/{AgentDemoPage-BWRAHFkt.js → AgentDemoPage-Bm-3uhK_.js} +1 -1
- package/dist/web/assets/{DemoPage-BZ5M1SAB.js → DemoPage-TFE2qMhV.js} +1 -1
- package/dist/web/assets/{GeneralSettingsPage-BaOOwCVS.js → GeneralSettingsPage-CyQmiUK1.js} +1 -1
- package/dist/web/assets/{NotificationSettingsPage-BN6EqfjU.js → NotificationSettingsPage-CLAjR_nJ.js} +1 -1
- package/dist/web/assets/{ProfileSettingsPage-CIP6uixV.js → ProfileSettingsPage-ApLKiykg.js} +1 -1
- package/dist/web/assets/{ProjectKanbanPage-CFUQT6JK.js → ProjectKanbanPage-B1aozA_7.js} +3 -3
- package/dist/web/assets/{ProjectSettingsPage-CfNoBWSi.js → ProjectSettingsPage-BZXMxNIw.js} +1 -1
- package/dist/web/assets/{ProviderSettingsPage-DwDw9zUR.js → ProviderSettingsPage-CfLduglc.js} +1 -1
- package/dist/web/assets/{button-D_HFYACB.js → button-2amePQEd.js} +1 -1
- package/dist/web/assets/{chevron-down-9WClAEn8.js → chevron-down-wgZs074C.js} +1 -1
- package/dist/web/assets/{chevron-right-BtN8Zto2.js → chevron-right-BCroanpY.js} +1 -1
- package/dist/web/assets/{circle-alert-HHdlJNqe.js → circle-alert-j-2yKJ-Z.js} +1 -1
- package/dist/web/assets/{circle-check-cTH6ieYz.js → circle-check-DS-_9pC8.js} +1 -1
- package/dist/web/assets/{code-block-OCS4YCEC-CZZdDA2x.js → code-block-OCS4YCEC-IB4-8hzU.js} +1 -1
- package/dist/web/assets/{confirm-dialog-CDJoysvO.js → confirm-dialog-BLWrfawu.js} +1 -1
- package/dist/web/assets/folder-picker-C9TegXbq.js +1 -0
- package/dist/web/assets/{index-D7K8KUJH.js → index-CLOtb2Es.js} +2 -2
- package/dist/web/assets/{loader-circle-lo-fmqx0.js → loader-circle-BRpu-4c2.js} +1 -1
- package/dist/web/assets/{mermaid-NOHMQCX5-CvKYIlPK.js → mermaid-NOHMQCX5-COZZkjo8.js} +3 -3
- package/dist/web/assets/{modal-CUBMvXmY.js → modal-D6rHuqas.js} +1 -1
- package/dist/web/assets/{pencil-DYpEk25M.js → pencil-iSjdfCcI.js} +1 -1
- package/dist/web/assets/{rotate-ccw-CzrmYvZT.js → rotate-ccw-u0yrABr3.js} +1 -1
- package/dist/web/assets/{select-DfuMoG1o.js → select-HYu8EZw-.js} +1 -1
- package/dist/web/assets/{use-profiles-Dne_0dqT.js → use-profiles-BhAhQrOF.js} +1 -1
- package/dist/web/assets/{use-providers-BU-lcRuU.js → use-providers-KlDj-ZVv.js} +1 -1
- package/dist/web/index.html +1 -1
- package/node_modules/@shitiandmw/node-pty/LICENSE +69 -0
- package/node_modules/@shitiandmw/node-pty/README.md +165 -0
- package/node_modules/@shitiandmw/node-pty/lib/conpty_console_list_agent.js +16 -0
- package/node_modules/@shitiandmw/node-pty/lib/conpty_console_list_agent.js.map +1 -0
- package/node_modules/@shitiandmw/node-pty/lib/eventEmitter2.js +47 -0
- package/node_modules/@shitiandmw/node-pty/lib/eventEmitter2.js.map +1 -0
- package/node_modules/@shitiandmw/node-pty/lib/eventEmitter2.test.js +30 -0
- package/node_modules/@shitiandmw/node-pty/lib/eventEmitter2.test.js.map +1 -0
- package/node_modules/@shitiandmw/node-pty/lib/index.js +52 -0
- package/node_modules/@shitiandmw/node-pty/lib/index.js.map +1 -0
- package/node_modules/@shitiandmw/node-pty/lib/interfaces.js +7 -0
- package/node_modules/@shitiandmw/node-pty/lib/interfaces.js.map +1 -0
- package/node_modules/@shitiandmw/node-pty/lib/shared/conout.js +11 -0
- package/node_modules/@shitiandmw/node-pty/lib/shared/conout.js.map +1 -0
- package/node_modules/@shitiandmw/node-pty/lib/terminal.js +190 -0
- package/node_modules/@shitiandmw/node-pty/lib/terminal.js.map +1 -0
- package/node_modules/@shitiandmw/node-pty/lib/terminal.test.js +139 -0
- package/node_modules/@shitiandmw/node-pty/lib/terminal.test.js.map +1 -0
- package/node_modules/@shitiandmw/node-pty/lib/testUtils.test.js +28 -0
- package/node_modules/@shitiandmw/node-pty/lib/testUtils.test.js.map +1 -0
- package/node_modules/@shitiandmw/node-pty/lib/types.js +7 -0
- package/node_modules/@shitiandmw/node-pty/lib/types.js.map +1 -0
- package/node_modules/@shitiandmw/node-pty/lib/unixTerminal.js +346 -0
- package/node_modules/@shitiandmw/node-pty/lib/unixTerminal.js.map +1 -0
- package/node_modules/@shitiandmw/node-pty/lib/unixTerminal.test.js +351 -0
- package/node_modules/@shitiandmw/node-pty/lib/unixTerminal.test.js.map +1 -0
- package/node_modules/@shitiandmw/node-pty/lib/utils.js +39 -0
- package/node_modules/@shitiandmw/node-pty/lib/utils.js.map +1 -0
- package/node_modules/@shitiandmw/node-pty/lib/windowsConoutConnection.js +125 -0
- package/node_modules/@shitiandmw/node-pty/lib/windowsConoutConnection.js.map +1 -0
- package/node_modules/@shitiandmw/node-pty/lib/windowsPtyAgent.js +320 -0
- package/node_modules/@shitiandmw/node-pty/lib/windowsPtyAgent.js.map +1 -0
- package/node_modules/@shitiandmw/node-pty/lib/windowsPtyAgent.test.js +90 -0
- package/node_modules/@shitiandmw/node-pty/lib/windowsPtyAgent.test.js.map +1 -0
- package/node_modules/@shitiandmw/node-pty/lib/windowsTerminal.js +199 -0
- package/node_modules/@shitiandmw/node-pty/lib/windowsTerminal.js.map +1 -0
- package/node_modules/@shitiandmw/node-pty/lib/windowsTerminal.test.js +219 -0
- package/node_modules/@shitiandmw/node-pty/lib/windowsTerminal.test.js.map +1 -0
- package/node_modules/@shitiandmw/node-pty/lib/worker/conoutSocketWorker.js +22 -0
- package/node_modules/@shitiandmw/node-pty/lib/worker/conoutSocketWorker.js.map +1 -0
- package/node_modules/@shitiandmw/node-pty/package.json +66 -0
- package/node_modules/@shitiandmw/node-pty/prebuilds/darwin-arm64/pty.node +0 -0
- package/node_modules/@shitiandmw/node-pty/prebuilds/darwin-arm64/spawn-helper +0 -0
- package/node_modules/@shitiandmw/node-pty/prebuilds/darwin-x64/pty.node +0 -0
- package/node_modules/@shitiandmw/node-pty/prebuilds/darwin-x64/spawn-helper +0 -0
- package/node_modules/@shitiandmw/node-pty/prebuilds/linux-arm64/pty.node +0 -0
- package/node_modules/@shitiandmw/node-pty/prebuilds/linux-x64/pty.node +0 -0
- package/node_modules/@shitiandmw/node-pty/prebuilds/win32-arm64/conpty/OpenConsole.exe +0 -0
- package/node_modules/@shitiandmw/node-pty/prebuilds/win32-arm64/conpty/conpty.dll +0 -0
- package/node_modules/@shitiandmw/node-pty/prebuilds/win32-arm64/conpty.node +0 -0
- package/node_modules/@shitiandmw/node-pty/prebuilds/win32-arm64/conpty_console_list.node +0 -0
- package/node_modules/@shitiandmw/node-pty/prebuilds/win32-arm64/pty.node +0 -0
- package/node_modules/@shitiandmw/node-pty/prebuilds/win32-arm64/winpty-agent.exe +0 -0
- package/node_modules/@shitiandmw/node-pty/prebuilds/win32-arm64/winpty.dll +0 -0
- package/node_modules/@shitiandmw/node-pty/prebuilds/win32-x64/conpty/OpenConsole.exe +0 -0
- package/node_modules/@shitiandmw/node-pty/prebuilds/win32-x64/conpty/conpty.dll +0 -0
- package/node_modules/@shitiandmw/node-pty/prebuilds/win32-x64/conpty.node +0 -0
- package/node_modules/@shitiandmw/node-pty/prebuilds/win32-x64/conpty_console_list.node +0 -0
- package/node_modules/@shitiandmw/node-pty/prebuilds/win32-x64/pty.node +0 -0
- package/node_modules/@shitiandmw/node-pty/prebuilds/win32-x64/winpty-agent.exe +0 -0
- package/node_modules/@shitiandmw/node-pty/prebuilds/win32-x64/winpty.dll +0 -0
- package/node_modules/@shitiandmw/node-pty/scripts/gen-compile-commands.js +8 -0
- package/node_modules/@shitiandmw/node-pty/scripts/increment-version.js +54 -0
- package/node_modules/@shitiandmw/node-pty/scripts/post-install.js +80 -0
- package/node_modules/@shitiandmw/node-pty/scripts/prebuild.js +34 -0
- package/node_modules/@shitiandmw/node-pty/scripts/verify-darwin-fd-leak.js +68 -0
- package/node_modules/@shitiandmw/node-pty/third_party/conpty/1.23.251008001/win10-arm64/OpenConsole.exe +0 -0
- package/node_modules/@shitiandmw/node-pty/third_party/conpty/1.23.251008001/win10-arm64/conpty.dll +0 -0
- package/node_modules/@shitiandmw/node-pty/third_party/conpty/1.23.251008001/win10-x64/OpenConsole.exe +0 -0
- package/node_modules/@shitiandmw/node-pty/third_party/conpty/1.23.251008001/win10-x64/conpty.dll +0 -0
- package/node_modules/@shitiandmw/node-pty/typings/node-pty.d.ts +215 -0
- package/package.json +2 -1
- package/dist/web/assets/folder-picker-N8GypL3a.js +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
import{h as e}from"./index-
|
|
1
|
+
import{h as e}from"./index-CLOtb2Es.js";const o=[["path",{d:"M21 12a9 9 0 1 1-6.219-8.56",key:"13zald"}]],a=e("loader-circle",o);export{a as L};
|