opencode-supertask 0.1.7 → 0.1.9
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 +23 -49
- 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 +25 -36
- 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/worker/index.js
CHANGED
|
@@ -5122,6 +5122,8 @@ var tasks = sqliteTable("tasks", {
|
|
|
5122
5122
|
// 任务分组与依赖
|
|
5123
5123
|
batchId: text("batch_id"),
|
|
5124
5124
|
dependsOn: integer("depends_on"),
|
|
5125
|
+
// OpenCode Session
|
|
5126
|
+
sessionId: text("session_id"),
|
|
5125
5127
|
// 状态
|
|
5126
5128
|
status: text("status").default("pending"),
|
|
5127
5129
|
// 时间戳(老字段保持秒级 timestamp)
|