opencode-supertask 0.1.4 → 0.1.6
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/cli/index.js +211 -138
- package/dist/cli/index.js.map +1 -1
- package/dist/gateway/index.js +17547 -13672
- package/dist/gateway/index.js.map +1 -1
- package/dist/plugin/supertask.js +50 -5
- package/dist/plugin/supertask.js.map +1 -1
- package/dist/web/index.d.ts +4 -1
- package/dist/web/index.js +7 -1
- package/dist/web/index.js.map +1 -1
- package/dist/worker/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/web/index.d.ts
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import * as hono from 'hono';
|
|
2
|
+
import { Hono } from 'hono';
|
|
3
|
+
import * as hono_types from 'hono/types';
|
|
2
4
|
|
|
5
|
+
declare const dashboardApp: Hono<hono_types.BlankEnv, hono_types.BlankSchema, "/">;
|
|
3
6
|
declare const _default: {
|
|
4
7
|
port: number;
|
|
5
8
|
fetch: (request: Request, Env?: unknown, executionCtx?: hono.ExecutionContext) => Response | Promise<Response>;
|
|
6
9
|
};
|
|
7
10
|
|
|
8
|
-
export { _default as default };
|
|
11
|
+
export { dashboardApp, _default as default };
|
package/dist/web/index.js
CHANGED
|
@@ -17065,6 +17065,10 @@ var DEFAULT_CONFIG = {
|
|
|
17065
17065
|
cleanupIntervalMs: 6e4,
|
|
17066
17066
|
retentionDays: 30
|
|
17067
17067
|
},
|
|
17068
|
+
dashboard: {
|
|
17069
|
+
enabled: true,
|
|
17070
|
+
port: 4680
|
|
17071
|
+
},
|
|
17068
17072
|
logging: {
|
|
17069
17073
|
level: "info",
|
|
17070
17074
|
format: "json"
|
|
@@ -17624,11 +17628,13 @@ app.put("/api/config", async (c) => {
|
|
|
17624
17628
|
return c.json({ success: false, error: err instanceof Error ? err.message : String(err) });
|
|
17625
17629
|
}
|
|
17626
17630
|
});
|
|
17631
|
+
var dashboardApp = app;
|
|
17627
17632
|
var web_default = {
|
|
17628
|
-
port:
|
|
17633
|
+
port: 4680,
|
|
17629
17634
|
fetch: app.fetch
|
|
17630
17635
|
};
|
|
17631
17636
|
export {
|
|
17637
|
+
dashboardApp,
|
|
17632
17638
|
web_default as default
|
|
17633
17639
|
};
|
|
17634
17640
|
//# sourceMappingURL=index.js.map
|