@lambdacurry/arbor 0.22.10 → 0.22.11
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/arbor.js +2 -1
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// package.json
|
|
3
3
|
var package_default = {
|
|
4
4
|
name: "@lambdacurry/arbor",
|
|
5
|
-
version: "0.22.
|
|
5
|
+
version: "0.22.11",
|
|
6
6
|
description: "The Arbor CLI — a shared workspace for people and agents. The human + headless-agent write path over Arbor's guarded operation surface.",
|
|
7
7
|
keywords: [
|
|
8
8
|
"agents",
|
|
@@ -6687,6 +6687,7 @@ var computerRunStarts = sqliteTable("computer_run_starts", {
|
|
|
6687
6687
|
mode: text("mode").$type().notNull(),
|
|
6688
6688
|
execution: text("execution").$type().notNull(),
|
|
6689
6689
|
label: text("label"),
|
|
6690
|
+
forkStrategy: text("fork_strategy").$type(),
|
|
6690
6691
|
checkpointLineageKey: text("checkpoint_lineage_key"),
|
|
6691
6692
|
checkpointExpectedCurrentSnapshotId: text("checkpoint_expected_current_snapshot_id").references(() => computerSnapshots.id),
|
|
6692
6693
|
checkpointParentSnapshotId: text("checkpoint_parent_snapshot_id").references(() => computerSnapshots.id),
|
package/package.json
CHANGED