@open-mercato/cezar 0.9.1-pr705.843 → 0.9.1-pr705.844
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/server/server.d.ts +36 -36
- package/package.json +2 -2
package/dist/server/server.d.ts
CHANGED
|
@@ -306,10 +306,14 @@ export declare function createApp(deps: ServerDeps): import("hono/hono-base").Ho
|
|
|
306
306
|
"/agent-config/:id": {
|
|
307
307
|
$put: {
|
|
308
308
|
output: {
|
|
309
|
-
|
|
309
|
+
id: string;
|
|
310
|
+
path: string;
|
|
311
|
+
exists: boolean;
|
|
312
|
+
content: string;
|
|
313
|
+
version: string | null;
|
|
310
314
|
};
|
|
311
315
|
outputFormat: "json";
|
|
312
|
-
status:
|
|
316
|
+
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
313
317
|
input: {
|
|
314
318
|
param: {
|
|
315
319
|
id: string;
|
|
@@ -317,14 +321,10 @@ export declare function createApp(deps: ServerDeps): import("hono/hono-base").Ho
|
|
|
317
321
|
};
|
|
318
322
|
} | {
|
|
319
323
|
output: {
|
|
320
|
-
|
|
321
|
-
path: string;
|
|
322
|
-
exists: boolean;
|
|
323
|
-
content: string;
|
|
324
|
-
version: string | null;
|
|
324
|
+
error: string;
|
|
325
325
|
};
|
|
326
326
|
outputFormat: "json";
|
|
327
|
-
status:
|
|
327
|
+
status: 404;
|
|
328
328
|
input: {
|
|
329
329
|
param: {
|
|
330
330
|
id: string;
|
|
@@ -381,14 +381,6 @@ export declare function createApp(deps: ServerDeps): import("hono/hono-base").Ho
|
|
|
381
381
|
} & {
|
|
382
382
|
"/workflows": {
|
|
383
383
|
$post: {
|
|
384
|
-
output: {
|
|
385
|
-
path: string;
|
|
386
|
-
name: string;
|
|
387
|
-
};
|
|
388
|
-
outputFormat: "json";
|
|
389
|
-
status: 201;
|
|
390
|
-
input: {};
|
|
391
|
-
} | {
|
|
392
384
|
output: {
|
|
393
385
|
error: string;
|
|
394
386
|
};
|
|
@@ -410,6 +402,14 @@ export declare function createApp(deps: ServerDeps): import("hono/hono-base").Ho
|
|
|
410
402
|
outputFormat: "json";
|
|
411
403
|
status: 500;
|
|
412
404
|
input: {};
|
|
405
|
+
} | {
|
|
406
|
+
output: {
|
|
407
|
+
path: string;
|
|
408
|
+
name: string;
|
|
409
|
+
};
|
|
410
|
+
outputFormat: "json";
|
|
411
|
+
status: 201;
|
|
412
|
+
input: {};
|
|
413
413
|
};
|
|
414
414
|
};
|
|
415
415
|
} & {
|
|
@@ -419,7 +419,7 @@ export declare function createApp(deps: ServerDeps): import("hono/hono-base").Ho
|
|
|
419
419
|
error: string;
|
|
420
420
|
};
|
|
421
421
|
outputFormat: "json";
|
|
422
|
-
status:
|
|
422
|
+
status: 404;
|
|
423
423
|
input: {
|
|
424
424
|
param: {
|
|
425
425
|
name: string;
|
|
@@ -430,7 +430,7 @@ export declare function createApp(deps: ServerDeps): import("hono/hono-base").Ho
|
|
|
430
430
|
error: string;
|
|
431
431
|
};
|
|
432
432
|
outputFormat: "json";
|
|
433
|
-
status:
|
|
433
|
+
status: 400;
|
|
434
434
|
input: {
|
|
435
435
|
param: {
|
|
436
436
|
name: string;
|
|
@@ -583,10 +583,14 @@ export declare function createApp(deps: ServerDeps): import("hono/hono-base").Ho
|
|
|
583
583
|
"/agent-config/:id": {
|
|
584
584
|
$put: {
|
|
585
585
|
output: {
|
|
586
|
-
|
|
586
|
+
id: string;
|
|
587
|
+
path: string;
|
|
588
|
+
exists: boolean;
|
|
589
|
+
content: string;
|
|
590
|
+
version: string | null;
|
|
587
591
|
};
|
|
588
592
|
outputFormat: "json";
|
|
589
|
-
status:
|
|
593
|
+
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
590
594
|
input: {
|
|
591
595
|
param: {
|
|
592
596
|
id: string;
|
|
@@ -594,14 +598,10 @@ export declare function createApp(deps: ServerDeps): import("hono/hono-base").Ho
|
|
|
594
598
|
};
|
|
595
599
|
} | {
|
|
596
600
|
output: {
|
|
597
|
-
|
|
598
|
-
path: string;
|
|
599
|
-
exists: boolean;
|
|
600
|
-
content: string;
|
|
601
|
-
version: string | null;
|
|
601
|
+
error: string;
|
|
602
602
|
};
|
|
603
603
|
outputFormat: "json";
|
|
604
|
-
status:
|
|
604
|
+
status: 404;
|
|
605
605
|
input: {
|
|
606
606
|
param: {
|
|
607
607
|
id: string;
|
|
@@ -658,14 +658,6 @@ export declare function createApp(deps: ServerDeps): import("hono/hono-base").Ho
|
|
|
658
658
|
} & {
|
|
659
659
|
"/workflows": {
|
|
660
660
|
$post: {
|
|
661
|
-
output: {
|
|
662
|
-
path: string;
|
|
663
|
-
name: string;
|
|
664
|
-
};
|
|
665
|
-
outputFormat: "json";
|
|
666
|
-
status: 201;
|
|
667
|
-
input: {};
|
|
668
|
-
} | {
|
|
669
661
|
output: {
|
|
670
662
|
error: string;
|
|
671
663
|
};
|
|
@@ -687,6 +679,14 @@ export declare function createApp(deps: ServerDeps): import("hono/hono-base").Ho
|
|
|
687
679
|
outputFormat: "json";
|
|
688
680
|
status: 500;
|
|
689
681
|
input: {};
|
|
682
|
+
} | {
|
|
683
|
+
output: {
|
|
684
|
+
path: string;
|
|
685
|
+
name: string;
|
|
686
|
+
};
|
|
687
|
+
outputFormat: "json";
|
|
688
|
+
status: 201;
|
|
689
|
+
input: {};
|
|
690
690
|
};
|
|
691
691
|
};
|
|
692
692
|
} & {
|
|
@@ -696,7 +696,7 @@ export declare function createApp(deps: ServerDeps): import("hono/hono-base").Ho
|
|
|
696
696
|
error: string;
|
|
697
697
|
};
|
|
698
698
|
outputFormat: "json";
|
|
699
|
-
status:
|
|
699
|
+
status: 404;
|
|
700
700
|
input: {
|
|
701
701
|
param: {
|
|
702
702
|
name: string;
|
|
@@ -707,7 +707,7 @@ export declare function createApp(deps: ServerDeps): import("hono/hono-base").Ho
|
|
|
707
707
|
error: string;
|
|
708
708
|
};
|
|
709
709
|
outputFormat: "json";
|
|
710
|
-
status:
|
|
710
|
+
status: 400;
|
|
711
711
|
input: {
|
|
712
712
|
param: {
|
|
713
713
|
name: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@open-mercato/cezar",
|
|
3
|
-
"version": "0.9.1-pr705.
|
|
3
|
+
"version": "0.9.1-pr705.844",
|
|
4
4
|
"description": "Local cockpit for running and tracking AI agent tasks in your repo. Uses your logged-in `claude` CLI and `gh` — zero config, zero database.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"zod": "^3.23.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@open-mercato/cezar-api-client": "0.9.1-pr705.
|
|
53
|
+
"@open-mercato/cezar-api-client": "0.9.1-pr705.844",
|
|
54
54
|
"@types/node": "^20.14.0",
|
|
55
55
|
"@types/ws": "^8.18.1",
|
|
56
56
|
"tsx": "^4.19.0",
|