@quilltap/plugin-types 1.16.1 → 1.16.2

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.
@@ -230,6 +230,8 @@ interface LLMParams {
230
230
  webSearchEnabled?: boolean;
231
231
  /** Provider-specific parameters from profile */
232
232
  profileParameters?: Record<string, unknown>;
233
+ /** Previous response ID for conversation chaining (OpenAI Responses API) */
234
+ previousResponseId?: string;
233
235
  }
234
236
  /**
235
237
  * Token usage statistics
@@ -230,6 +230,8 @@ interface LLMParams {
230
230
  webSearchEnabled?: boolean;
231
231
  /** Provider-specific parameters from profile */
232
232
  profileParameters?: Record<string, unknown>;
233
+ /** Previous response ID for conversation chaining (OpenAI Responses API) */
234
+ previousResponseId?: string;
233
235
  }
234
236
  /**
235
237
  * Token usage statistics
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quilltap/plugin-types",
3
- "version": "1.16.1",
3
+ "version": "1.16.2",
4
4
  "description": "Type definitions for Quilltap plugin development",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",