@wjarka/cezarion 0.14.6-pr480.736 → 0.14.7
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
|
@@ -4104,6 +4104,19 @@ export declare function createApp(deps: ServerDeps): import("hono/hono-base").Ho
|
|
|
4104
4104
|
} & {
|
|
4105
4105
|
"/repo/commit/:sha": {
|
|
4106
4106
|
$get: {
|
|
4107
|
+
output: string;
|
|
4108
|
+
outputFormat: "text";
|
|
4109
|
+
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
4110
|
+
input: {
|
|
4111
|
+
query: {
|
|
4112
|
+
structured?: string | undefined;
|
|
4113
|
+
};
|
|
4114
|
+
} & {
|
|
4115
|
+
param: {
|
|
4116
|
+
sha: string;
|
|
4117
|
+
};
|
|
4118
|
+
};
|
|
4119
|
+
} | {
|
|
4107
4120
|
output: {
|
|
4108
4121
|
error: string;
|
|
4109
4122
|
code?: "invalid_input" | undefined;
|
|
@@ -4167,19 +4180,6 @@ export declare function createApp(deps: ServerDeps): import("hono/hono-base").Ho
|
|
|
4167
4180
|
sha: string;
|
|
4168
4181
|
};
|
|
4169
4182
|
};
|
|
4170
|
-
} | {
|
|
4171
|
-
output: string;
|
|
4172
|
-
outputFormat: "text";
|
|
4173
|
-
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
4174
|
-
input: {
|
|
4175
|
-
query: {
|
|
4176
|
-
structured?: string | undefined;
|
|
4177
|
-
};
|
|
4178
|
-
} & {
|
|
4179
|
-
param: {
|
|
4180
|
-
sha: string;
|
|
4181
|
-
};
|
|
4182
|
-
};
|
|
4183
4183
|
};
|
|
4184
4184
|
};
|
|
4185
4185
|
} & {
|
|
@@ -10850,20 +10850,20 @@ export declare function createApp(deps: ServerDeps): import("hono/hono-base").Ho
|
|
|
10850
10850
|
} & {
|
|
10851
10851
|
"/runs/:id/handoff": {
|
|
10852
10852
|
$get: {
|
|
10853
|
-
output:
|
|
10854
|
-
|
|
10855
|
-
|
|
10856
|
-
outputFormat: "json";
|
|
10857
|
-
status: 404;
|
|
10853
|
+
output: string;
|
|
10854
|
+
outputFormat: "text";
|
|
10855
|
+
status: 200;
|
|
10858
10856
|
input: {
|
|
10859
10857
|
param: {
|
|
10860
10858
|
id: string;
|
|
10861
10859
|
};
|
|
10862
10860
|
};
|
|
10863
10861
|
} | {
|
|
10864
|
-
output:
|
|
10865
|
-
|
|
10866
|
-
|
|
10862
|
+
output: {
|
|
10863
|
+
error: string;
|
|
10864
|
+
};
|
|
10865
|
+
outputFormat: "json";
|
|
10866
|
+
status: 404;
|
|
10867
10867
|
input: {
|
|
10868
10868
|
param: {
|
|
10869
10869
|
id: string;
|
|
@@ -10901,20 +10901,20 @@ export declare function createApp(deps: ServerDeps): import("hono/hono-base").Ho
|
|
|
10901
10901
|
} & {
|
|
10902
10902
|
"/runs/:id/diff": {
|
|
10903
10903
|
$get: {
|
|
10904
|
-
output:
|
|
10905
|
-
|
|
10906
|
-
|
|
10907
|
-
outputFormat: "json";
|
|
10908
|
-
status: 404;
|
|
10904
|
+
output: string;
|
|
10905
|
+
outputFormat: "text";
|
|
10906
|
+
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
10909
10907
|
input: {
|
|
10910
10908
|
param: {
|
|
10911
10909
|
id: string;
|
|
10912
10910
|
};
|
|
10913
10911
|
};
|
|
10914
10912
|
} | {
|
|
10915
|
-
output:
|
|
10916
|
-
|
|
10917
|
-
|
|
10913
|
+
output: {
|
|
10914
|
+
error: string;
|
|
10915
|
+
};
|
|
10916
|
+
outputFormat: "json";
|
|
10917
|
+
status: 404;
|
|
10918
10918
|
input: {
|
|
10919
10919
|
param: {
|
|
10920
10920
|
id: string;
|
|
@@ -13433,6 +13433,19 @@ export declare function createApp(deps: ServerDeps): import("hono/hono-base").Ho
|
|
|
13433
13433
|
} & {
|
|
13434
13434
|
"/repo/commit/:sha": {
|
|
13435
13435
|
$get: {
|
|
13436
|
+
output: string;
|
|
13437
|
+
outputFormat: "text";
|
|
13438
|
+
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
13439
|
+
input: {
|
|
13440
|
+
query: {
|
|
13441
|
+
structured?: string | undefined;
|
|
13442
|
+
};
|
|
13443
|
+
} & {
|
|
13444
|
+
param: {
|
|
13445
|
+
sha: string;
|
|
13446
|
+
};
|
|
13447
|
+
};
|
|
13448
|
+
} | {
|
|
13436
13449
|
output: {
|
|
13437
13450
|
error: string;
|
|
13438
13451
|
code?: "invalid_input" | undefined;
|
|
@@ -13496,19 +13509,6 @@ export declare function createApp(deps: ServerDeps): import("hono/hono-base").Ho
|
|
|
13496
13509
|
sha: string;
|
|
13497
13510
|
};
|
|
13498
13511
|
};
|
|
13499
|
-
} | {
|
|
13500
|
-
output: string;
|
|
13501
|
-
outputFormat: "text";
|
|
13502
|
-
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
13503
|
-
input: {
|
|
13504
|
-
query: {
|
|
13505
|
-
structured?: string | undefined;
|
|
13506
|
-
};
|
|
13507
|
-
} & {
|
|
13508
|
-
param: {
|
|
13509
|
-
sha: string;
|
|
13510
|
-
};
|
|
13511
|
-
};
|
|
13512
13512
|
};
|
|
13513
13513
|
};
|
|
13514
13514
|
} & {
|
|
@@ -20179,20 +20179,20 @@ export declare function createApp(deps: ServerDeps): import("hono/hono-base").Ho
|
|
|
20179
20179
|
} & {
|
|
20180
20180
|
"/runs/:id/handoff": {
|
|
20181
20181
|
$get: {
|
|
20182
|
-
output:
|
|
20183
|
-
|
|
20184
|
-
|
|
20185
|
-
outputFormat: "json";
|
|
20186
|
-
status: 404;
|
|
20182
|
+
output: string;
|
|
20183
|
+
outputFormat: "text";
|
|
20184
|
+
status: 200;
|
|
20187
20185
|
input: {
|
|
20188
20186
|
param: {
|
|
20189
20187
|
id: string;
|
|
20190
20188
|
};
|
|
20191
20189
|
};
|
|
20192
20190
|
} | {
|
|
20193
|
-
output:
|
|
20194
|
-
|
|
20195
|
-
|
|
20191
|
+
output: {
|
|
20192
|
+
error: string;
|
|
20193
|
+
};
|
|
20194
|
+
outputFormat: "json";
|
|
20195
|
+
status: 404;
|
|
20196
20196
|
input: {
|
|
20197
20197
|
param: {
|
|
20198
20198
|
id: string;
|
|
@@ -20230,20 +20230,20 @@ export declare function createApp(deps: ServerDeps): import("hono/hono-base").Ho
|
|
|
20230
20230
|
} & {
|
|
20231
20231
|
"/runs/:id/diff": {
|
|
20232
20232
|
$get: {
|
|
20233
|
-
output:
|
|
20234
|
-
|
|
20235
|
-
|
|
20236
|
-
outputFormat: "json";
|
|
20237
|
-
status: 404;
|
|
20233
|
+
output: string;
|
|
20234
|
+
outputFormat: "text";
|
|
20235
|
+
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
20238
20236
|
input: {
|
|
20239
20237
|
param: {
|
|
20240
20238
|
id: string;
|
|
20241
20239
|
};
|
|
20242
20240
|
};
|
|
20243
20241
|
} | {
|
|
20244
|
-
output:
|
|
20245
|
-
|
|
20246
|
-
|
|
20242
|
+
output: {
|
|
20243
|
+
error: string;
|
|
20244
|
+
};
|
|
20245
|
+
outputFormat: "json";
|
|
20246
|
+
status: 404;
|
|
20247
20247
|
input: {
|
|
20248
20248
|
param: {
|
|
20249
20249
|
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.7",
|
|
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",
|
|
@@ -51,8 +51,8 @@
|
|
|
51
51
|
"zod": "^4.4.3"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@open-mercato/cezar-api-client": "0.14.
|
|
55
|
-
"@open-mercato/cezar-contract": "0.14.
|
|
54
|
+
"@open-mercato/cezar-api-client": "^0.14.7",
|
|
55
|
+
"@open-mercato/cezar-contract": "^0.14.7",
|
|
56
56
|
"@types/node": "^20.14.0",
|
|
57
57
|
"@types/ws": "^8.18.1",
|
|
58
58
|
"esbuild": "^0.28.1",
|