@wjarka/cezarion 0.14.4-pr462.709 → 0.14.5
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 +58 -58
- package/package.json +3 -3
package/dist/server/server.d.ts
CHANGED
|
@@ -3971,6 +3971,19 @@ export declare function createApp(deps: ServerDeps): import("hono/hono-base").Ho
|
|
|
3971
3971
|
} & {
|
|
3972
3972
|
"/repo/commit/:sha": {
|
|
3973
3973
|
$get: {
|
|
3974
|
+
output: string;
|
|
3975
|
+
outputFormat: "text";
|
|
3976
|
+
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
3977
|
+
input: {
|
|
3978
|
+
query: {
|
|
3979
|
+
structured?: string | undefined;
|
|
3980
|
+
};
|
|
3981
|
+
} & {
|
|
3982
|
+
param: {
|
|
3983
|
+
sha: string;
|
|
3984
|
+
};
|
|
3985
|
+
};
|
|
3986
|
+
} | {
|
|
3974
3987
|
output: {
|
|
3975
3988
|
error: string;
|
|
3976
3989
|
code?: "invalid_input" | undefined;
|
|
@@ -4034,19 +4047,6 @@ export declare function createApp(deps: ServerDeps): import("hono/hono-base").Ho
|
|
|
4034
4047
|
sha: string;
|
|
4035
4048
|
};
|
|
4036
4049
|
};
|
|
4037
|
-
} | {
|
|
4038
|
-
output: string;
|
|
4039
|
-
outputFormat: "text";
|
|
4040
|
-
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
4041
|
-
input: {
|
|
4042
|
-
query: {
|
|
4043
|
-
structured?: string | undefined;
|
|
4044
|
-
};
|
|
4045
|
-
} & {
|
|
4046
|
-
param: {
|
|
4047
|
-
sha: string;
|
|
4048
|
-
};
|
|
4049
|
-
};
|
|
4050
4050
|
};
|
|
4051
4051
|
};
|
|
4052
4052
|
} & {
|
|
@@ -10134,20 +10134,20 @@ export declare function createApp(deps: ServerDeps): import("hono/hono-base").Ho
|
|
|
10134
10134
|
} & {
|
|
10135
10135
|
"/runs/:id/handoff": {
|
|
10136
10136
|
$get: {
|
|
10137
|
-
output:
|
|
10138
|
-
|
|
10139
|
-
|
|
10140
|
-
outputFormat: "json";
|
|
10141
|
-
status: 404;
|
|
10137
|
+
output: string;
|
|
10138
|
+
outputFormat: "text";
|
|
10139
|
+
status: 200;
|
|
10142
10140
|
input: {
|
|
10143
10141
|
param: {
|
|
10144
10142
|
id: string;
|
|
10145
10143
|
};
|
|
10146
10144
|
};
|
|
10147
10145
|
} | {
|
|
10148
|
-
output:
|
|
10149
|
-
|
|
10150
|
-
|
|
10146
|
+
output: {
|
|
10147
|
+
error: string;
|
|
10148
|
+
};
|
|
10149
|
+
outputFormat: "json";
|
|
10150
|
+
status: 404;
|
|
10151
10151
|
input: {
|
|
10152
10152
|
param: {
|
|
10153
10153
|
id: string;
|
|
@@ -10185,20 +10185,20 @@ export declare function createApp(deps: ServerDeps): import("hono/hono-base").Ho
|
|
|
10185
10185
|
} & {
|
|
10186
10186
|
"/runs/:id/diff": {
|
|
10187
10187
|
$get: {
|
|
10188
|
-
output:
|
|
10189
|
-
|
|
10190
|
-
|
|
10191
|
-
outputFormat: "json";
|
|
10192
|
-
status: 404;
|
|
10188
|
+
output: string;
|
|
10189
|
+
outputFormat: "text";
|
|
10190
|
+
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
10193
10191
|
input: {
|
|
10194
10192
|
param: {
|
|
10195
10193
|
id: string;
|
|
10196
10194
|
};
|
|
10197
10195
|
};
|
|
10198
10196
|
} | {
|
|
10199
|
-
output:
|
|
10200
|
-
|
|
10201
|
-
|
|
10197
|
+
output: {
|
|
10198
|
+
error: string;
|
|
10199
|
+
};
|
|
10200
|
+
outputFormat: "json";
|
|
10201
|
+
status: 404;
|
|
10202
10202
|
input: {
|
|
10203
10203
|
param: {
|
|
10204
10204
|
id: string;
|
|
@@ -12584,6 +12584,19 @@ export declare function createApp(deps: ServerDeps): import("hono/hono-base").Ho
|
|
|
12584
12584
|
} & {
|
|
12585
12585
|
"/repo/commit/:sha": {
|
|
12586
12586
|
$get: {
|
|
12587
|
+
output: string;
|
|
12588
|
+
outputFormat: "text";
|
|
12589
|
+
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
12590
|
+
input: {
|
|
12591
|
+
query: {
|
|
12592
|
+
structured?: string | undefined;
|
|
12593
|
+
};
|
|
12594
|
+
} & {
|
|
12595
|
+
param: {
|
|
12596
|
+
sha: string;
|
|
12597
|
+
};
|
|
12598
|
+
};
|
|
12599
|
+
} | {
|
|
12587
12600
|
output: {
|
|
12588
12601
|
error: string;
|
|
12589
12602
|
code?: "invalid_input" | undefined;
|
|
@@ -12647,19 +12660,6 @@ export declare function createApp(deps: ServerDeps): import("hono/hono-base").Ho
|
|
|
12647
12660
|
sha: string;
|
|
12648
12661
|
};
|
|
12649
12662
|
};
|
|
12650
|
-
} | {
|
|
12651
|
-
output: string;
|
|
12652
|
-
outputFormat: "text";
|
|
12653
|
-
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
12654
|
-
input: {
|
|
12655
|
-
query: {
|
|
12656
|
-
structured?: string | undefined;
|
|
12657
|
-
};
|
|
12658
|
-
} & {
|
|
12659
|
-
param: {
|
|
12660
|
-
sha: string;
|
|
12661
|
-
};
|
|
12662
|
-
};
|
|
12663
12663
|
};
|
|
12664
12664
|
};
|
|
12665
12665
|
} & {
|
|
@@ -18747,20 +18747,20 @@ export declare function createApp(deps: ServerDeps): import("hono/hono-base").Ho
|
|
|
18747
18747
|
} & {
|
|
18748
18748
|
"/runs/:id/handoff": {
|
|
18749
18749
|
$get: {
|
|
18750
|
-
output:
|
|
18751
|
-
|
|
18752
|
-
|
|
18753
|
-
outputFormat: "json";
|
|
18754
|
-
status: 404;
|
|
18750
|
+
output: string;
|
|
18751
|
+
outputFormat: "text";
|
|
18752
|
+
status: 200;
|
|
18755
18753
|
input: {
|
|
18756
18754
|
param: {
|
|
18757
18755
|
id: string;
|
|
18758
18756
|
};
|
|
18759
18757
|
};
|
|
18760
18758
|
} | {
|
|
18761
|
-
output:
|
|
18762
|
-
|
|
18763
|
-
|
|
18759
|
+
output: {
|
|
18760
|
+
error: string;
|
|
18761
|
+
};
|
|
18762
|
+
outputFormat: "json";
|
|
18763
|
+
status: 404;
|
|
18764
18764
|
input: {
|
|
18765
18765
|
param: {
|
|
18766
18766
|
id: string;
|
|
@@ -18798,20 +18798,20 @@ export declare function createApp(deps: ServerDeps): import("hono/hono-base").Ho
|
|
|
18798
18798
|
} & {
|
|
18799
18799
|
"/runs/:id/diff": {
|
|
18800
18800
|
$get: {
|
|
18801
|
-
output:
|
|
18802
|
-
|
|
18803
|
-
|
|
18804
|
-
outputFormat: "json";
|
|
18805
|
-
status: 404;
|
|
18801
|
+
output: string;
|
|
18802
|
+
outputFormat: "text";
|
|
18803
|
+
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
18806
18804
|
input: {
|
|
18807
18805
|
param: {
|
|
18808
18806
|
id: string;
|
|
18809
18807
|
};
|
|
18810
18808
|
};
|
|
18811
18809
|
} | {
|
|
18812
|
-
output:
|
|
18813
|
-
|
|
18814
|
-
|
|
18810
|
+
output: {
|
|
18811
|
+
error: string;
|
|
18812
|
+
};
|
|
18813
|
+
outputFormat: "json";
|
|
18814
|
+
status: 404;
|
|
18815
18815
|
input: {
|
|
18816
18816
|
param: {
|
|
18817
18817
|
id: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wjarka/cezarion",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.5",
|
|
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,8 +50,8 @@
|
|
|
50
50
|
"zod": "^4.4.3"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@open-mercato/cezar-api-client": "0.14.
|
|
54
|
-
"@open-mercato/cezar-contract": "0.14.
|
|
53
|
+
"@open-mercato/cezar-api-client": "^0.14.5",
|
|
54
|
+
"@open-mercato/cezar-contract": "^0.14.5",
|
|
55
55
|
"@types/node": "^20.14.0",
|
|
56
56
|
"@types/ws": "^8.18.1",
|
|
57
57
|
"esbuild": "^0.28.1",
|