@pantheon.ai/agents 0.0.5 → 0.0.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/index.js +4 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -54,10 +54,10 @@ const taskItemSchema = z.discriminatedUnion("status", [
|
|
|
54
54
|
task: z.string(),
|
|
55
55
|
project_id: z.uuid(),
|
|
56
56
|
base_branch_id: z.uuid(),
|
|
57
|
-
branch_id: z.uuid().optional(),
|
|
57
|
+
branch_id: z.uuid().nullable().optional(),
|
|
58
58
|
queued_at: z.coerce.date(),
|
|
59
|
-
started_at: z.coerce.date().optional(),
|
|
60
|
-
ended_at: z.coerce.date().optional(),
|
|
59
|
+
started_at: z.coerce.date().nullable().optional(),
|
|
60
|
+
ended_at: z.coerce.date().nullable().optional(),
|
|
61
61
|
error: z.string()
|
|
62
62
|
}),
|
|
63
63
|
z.object({
|
|
@@ -2119,7 +2119,7 @@ var require_cli_options = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
2119
2119
|
|
|
2120
2120
|
//#endregion
|
|
2121
2121
|
//#region package.json
|
|
2122
|
-
var version = "0.0.
|
|
2122
|
+
var version = "0.0.6";
|
|
2123
2123
|
|
|
2124
2124
|
//#endregion
|
|
2125
2125
|
//#region src/cli/index.ts
|