@neovate/code 0.28.1 → 0.28.3
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/cli.mjs +479 -479
- package/dist/index.d.ts +3 -0
- package/dist/index.mjs +479 -479
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2182,6 +2182,7 @@ export declare type SDKSessionOptions = {
|
|
|
2182
2182
|
* ```
|
|
2183
2183
|
*/
|
|
2184
2184
|
skills?: string[];
|
|
2185
|
+
outputStyle?: string;
|
|
2185
2186
|
};
|
|
2186
2187
|
|
|
2187
2188
|
declare type SDKSystemMessage = {
|
|
@@ -2199,6 +2200,7 @@ export declare type SDKUserMessage = {
|
|
|
2199
2200
|
parentUuid: string | null;
|
|
2200
2201
|
uuid: string;
|
|
2201
2202
|
sessionId: string;
|
|
2203
|
+
outputStyle?: string;
|
|
2202
2204
|
};
|
|
2203
2205
|
|
|
2204
2206
|
declare type SerializedSnapshot = {
|
|
@@ -2412,6 +2414,7 @@ declare type SessionSendInput = {
|
|
|
2412
2414
|
attachments?: ImagePart[];
|
|
2413
2415
|
parentUuid?: string;
|
|
2414
2416
|
thinking?: ThinkingConfig;
|
|
2417
|
+
outputStyle?: string;
|
|
2415
2418
|
};
|
|
2416
2419
|
|
|
2417
2420
|
declare type SessionSendOutput = any;
|