@vellumai/plugin-api 0.10.10-dev.202607170850.fa2b150 → 0.10.10-dev.202607171037.372686a
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/index.d.ts +16 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -5682,9 +5682,11 @@ declare type _SurfacesServerMessages = UiSurfaceShow | UiSurfaceUpdate | UiSurfa
|
|
|
5682
5682
|
*
|
|
5683
5683
|
* Idempotent: a second run finds no orphans. Deletion is by Qdrant payload
|
|
5684
5684
|
* (`target_type` + `target_id`) via `deleteByTarget`, so it removes cacheless
|
|
5685
|
-
* points a cache lookup could never surface.
|
|
5686
|
-
*
|
|
5687
|
-
*
|
|
5685
|
+
* points a cache lookup could never surface. Both the initial scroll and each
|
|
5686
|
+
* delete go through the Qdrant circuit breaker: an already-open circuit surfaces
|
|
5687
|
+
* as `QdrantCircuitOpenError` so the caller (the memory worker) defers the sweep
|
|
5688
|
+
* instead of spending its bounded retries, and a transient failure propagates
|
|
5689
|
+
* for retry on a later cycle.
|
|
5688
5690
|
*/
|
|
5689
5691
|
export declare function sweepOrphanedGraphNodePoints(qdrant: GraphNodeSweepClient): Promise<GraphNodeSweepResult>;
|
|
5690
5692
|
|
|
@@ -6117,6 +6119,17 @@ export declare interface ToolExecutionResult {
|
|
|
6117
6119
|
errorCode?: string;
|
|
6118
6120
|
/** Optional short status message for client display (e.g. `"truncated"`, `"timed out"`). */
|
|
6119
6121
|
status?: string;
|
|
6122
|
+
/**
|
|
6123
|
+
* Typed side channel from the app-builder executors to their post-execution
|
|
6124
|
+
* side-effect hooks (`daemon/tool-side-effects.ts`): the exact app id the
|
|
6125
|
+
* executor operated on. `app_id` is optional for the fallback tools
|
|
6126
|
+
* (`app_update`, `app_refresh`, `app_generate_icon`) — when the model omits
|
|
6127
|
+
* it the skill script resolves the conversation's active app — so hooks read
|
|
6128
|
+
* this authoritative id instead of re-parsing the LLM-facing `content`
|
|
6129
|
+
* payload, whose shape must stay decoupled from daemon logic (see
|
|
6130
|
+
* assistant/AGENTS.md § Post-execution hooks). Set only by the app_* executors.
|
|
6131
|
+
*/
|
|
6132
|
+
resolvedAppId?: string;
|
|
6120
6133
|
/**
|
|
6121
6134
|
* When true, the agent loop should yield control back to the user after
|
|
6122
6135
|
* returning this result — tool results are pushed to history and the loop
|
package/package.json
CHANGED