@hasna/todos 0.11.67 → 0.11.69
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/commands/project-commands.d.ts.map +1 -1
- package/dist/cli/helpers.d.ts +1 -0
- package/dist/cli/helpers.d.ts.map +1 -1
- package/dist/cli/index.js +8241 -2798
- package/dist/lib/project-panel.d.ts +8 -0
- package/dist/lib/project-panel.d.ts.map +1 -0
- package/dist/release-provenance.json +3 -3
- package/dist/server/index.js +2 -2
- package/package.json +2 -1
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { Database } from "bun:sqlite";
|
|
2
|
+
import { type ProjectPanel } from "@hasna/contracts";
|
|
3
|
+
export interface TodosProjectPanelOptions {
|
|
4
|
+
limit?: number;
|
|
5
|
+
db?: Database;
|
|
6
|
+
}
|
|
7
|
+
export declare function createTodosProjectPanel(projectId: string, options?: TodosProjectPanelOptions): ProjectPanel;
|
|
8
|
+
//# sourceMappingURL=project-panel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"project-panel.d.ts","sourceRoot":"","sources":["../../src/lib/project-panel.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAC3C,OAAO,EAGL,KAAK,YAAY,EAElB,MAAM,kBAAkB,CAAC;AAO1B,MAAM,WAAW,wBAAwB;IACvC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,EAAE,CAAC,EAAE,QAAQ,CAAC;CACf;AAkGD,wBAAgB,uBAAuB,CAAC,SAAS,EAAE,MAAM,EAAE,OAAO,GAAE,wBAA6B,GAAG,YAAY,CA2G/G"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"packageName": "@hasna/todos",
|
|
3
|
-
"packageVersion": "0.11.
|
|
3
|
+
"packageVersion": "0.11.69",
|
|
4
4
|
"repository": "https://github.com/hasna/todos.git",
|
|
5
|
-
"gitCommit": "
|
|
6
|
-
"generatedAt": "2026-06-
|
|
5
|
+
"gitCommit": "8de441cfe66d5e61839983b91ed42868d214b8b1",
|
|
6
|
+
"generatedAt": "2026-06-29T19:21:19.104Z"
|
|
7
7
|
}
|
package/dist/server/index.js
CHANGED
|
@@ -15565,7 +15565,7 @@ class JSONSchemaGenerator {
|
|
|
15565
15565
|
if (val === undefined) {
|
|
15566
15566
|
if (this.unrepresentable === "throw") {
|
|
15567
15567
|
throw new Error("Literal `undefined` cannot be represented in JSON Schema");
|
|
15568
|
-
}
|
|
15568
|
+
} else {}
|
|
15569
15569
|
} else if (typeof val === "bigint") {
|
|
15570
15570
|
if (this.unrepresentable === "throw") {
|
|
15571
15571
|
throw new Error("BigInt literals cannot be represented in JSON Schema");
|
|
@@ -58652,7 +58652,7 @@ var require_to_json_schema = __commonJS((exports) => {
|
|
|
58652
58652
|
if (val === undefined) {
|
|
58653
58653
|
if (this.unrepresentable === "throw") {
|
|
58654
58654
|
throw new Error("Literal `undefined` cannot be represented in JSON Schema");
|
|
58655
|
-
}
|
|
58655
|
+
} else {}
|
|
58656
58656
|
} else if (typeof val === "bigint") {
|
|
58657
58657
|
if (this.unrepresentable === "throw") {
|
|
58658
58658
|
throw new Error("BigInt literals cannot be represented in JSON Schema");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hasna/todos",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.69",
|
|
4
4
|
"description": "Universal task management for AI coding agents - CLI + MCP server + interactive TUI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -89,6 +89,7 @@
|
|
|
89
89
|
"author": "Andrei Hasna <andrei@hasna.com>",
|
|
90
90
|
"license": "Apache-2.0",
|
|
91
91
|
"dependencies": {
|
|
92
|
+
"@hasna/contracts": "^0.2.2",
|
|
92
93
|
"@hasna/events": "^0.1.11",
|
|
93
94
|
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
94
95
|
"chalk": "^5.4.1",
|