opencode-supertask 0.1.8 → 0.1.10
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/index.js +2 -0
- package/dist/cli/index.js.map +1 -1
- package/dist/gateway/index.js +2 -0
- package/dist/gateway/index.js.map +1 -1
- package/dist/plugin/supertask.js +7 -2
- package/dist/plugin/supertask.js.map +1 -1
- package/dist/web/index.js +2 -0
- package/dist/web/index.js.map +1 -1
- package/dist/worker/index.js +2 -0
- package/dist/worker/index.js.map +1 -1
- package/drizzle/0004_tiny_the_watchers.sql +30 -0
- package/drizzle/meta/0004_snapshot.json +479 -0
- package/drizzle/meta/_journal.json +7 -0
- package/package.json +1 -1
package/dist/web/index.js
CHANGED
|
@@ -16493,6 +16493,8 @@ var tasks = sqliteTable("tasks", {
|
|
|
16493
16493
|
// 任务分组与依赖
|
|
16494
16494
|
batchId: text("batch_id"),
|
|
16495
16495
|
dependsOn: integer("depends_on"),
|
|
16496
|
+
// OpenCode Session
|
|
16497
|
+
sessionId: text("session_id"),
|
|
16496
16498
|
// 状态
|
|
16497
16499
|
status: text("status").default("pending"),
|
|
16498
16500
|
// 时间戳(老字段保持秒级 timestamp)
|