@vellumai/plugin-api 0.10.9-dev.202607161445.5757c2f → 0.10.9-dev.202607161634.43bca24
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 +9 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -295,10 +295,6 @@ declare const AssistantConfigSchema: z.ZodObject<{
|
|
|
295
295
|
}>>;
|
|
296
296
|
}, z.core.$strip>>;
|
|
297
297
|
"web-fetch": z.ZodDefault<z.ZodObject<{
|
|
298
|
-
mode: z.ZodDefault<z.ZodEnum<{
|
|
299
|
-
managed: "managed";
|
|
300
|
-
"your-own": "your-own";
|
|
301
|
-
}>>;
|
|
302
298
|
provider: z.ZodDefault<z.ZodEnum<{
|
|
303
299
|
[x: string]: string;
|
|
304
300
|
}>>;
|
|
@@ -4925,6 +4921,15 @@ export declare interface RunConversationTurnOptions {
|
|
|
4925
4921
|
* controller fires, terminating the in-flight agent loop.
|
|
4926
4922
|
*/
|
|
4927
4923
|
signal?: AbortSignal;
|
|
4924
|
+
/**
|
|
4925
|
+
* Conversation type for newly created conversations. When omitted,
|
|
4926
|
+
* defaults to `"standard"` (visible in the sidebar). Set to
|
|
4927
|
+
* `"background"` for plugin-driven conversations that should not
|
|
4928
|
+
* appear in the sidebar's Recents grouping.
|
|
4929
|
+
*
|
|
4930
|
+
* Ignored when `conversationId` references an existing conversation.
|
|
4931
|
+
*/
|
|
4932
|
+
conversationType?: "standard" | "background";
|
|
4928
4933
|
}
|
|
4929
4934
|
|
|
4930
4935
|
export declare interface RunConversationTurnResult {
|
package/package.json
CHANGED