@skein-js/core 0.7.0 → 0.8.0
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.d.ts +8 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -230,6 +230,14 @@ interface RunKwargs {
|
|
|
230
230
|
* (which sources permissions from the auth scopes, not from the user object's `permissions`).
|
|
231
231
|
*/
|
|
232
232
|
auth_scopes?: string[];
|
|
233
|
+
/**
|
|
234
|
+
* Time-travel fork target: the checkpoint this run branches from instead of the thread tip.
|
|
235
|
+
* Server-owned — stamped from the validated top-level `checkpoint_id` on the run-create body,
|
|
236
|
+
* never merged from the client's `config.configurable` (which strips it). Injected into
|
|
237
|
+
* `configurable.checkpoint_id` by `toGraphCallOptions`. Persisted opaquely so a background or
|
|
238
|
+
* crash-recovered run forks from the same checkpoint when reconstructed via `getKwargs`.
|
|
239
|
+
*/
|
|
240
|
+
checkpoint_id?: string;
|
|
233
241
|
}
|
|
234
242
|
interface RunCreate {
|
|
235
243
|
thread_id: string;
|
package/package.json
CHANGED