@lambdacurry/arbor 0.22.10 → 0.22.12
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 +3 -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.12",
|
|
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),
|
|
@@ -7690,6 +7691,7 @@ var recallHit = looseObject({
|
|
|
7690
7691
|
score: number2(),
|
|
7691
7692
|
excerpt: string2(),
|
|
7692
7693
|
space: spaceRef.nullable(),
|
|
7694
|
+
threadId: nullableString,
|
|
7693
7695
|
url: nullableString,
|
|
7694
7696
|
createdAt: timestamp
|
|
7695
7697
|
});
|
package/package.json
CHANGED