@neovate/code 0.28.2 → 0.28.4
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 +203 -203
- package/dist/index.d.ts +5 -1
- package/dist/index.mjs +202 -202
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2142,7 +2142,8 @@ export declare interface SDKSession {
|
|
|
2142
2142
|
readonly sessionId: string;
|
|
2143
2143
|
send(message: string | SDKUserMessage): Promise<void>;
|
|
2144
2144
|
receive(): AsyncGenerator<SDKMessage, void>;
|
|
2145
|
-
|
|
2145
|
+
abort(): Promise<void>;
|
|
2146
|
+
close(): Promise<void>;
|
|
2146
2147
|
[Symbol.asyncDispose](): Promise<void>;
|
|
2147
2148
|
}
|
|
2148
2149
|
|
|
@@ -2182,6 +2183,7 @@ export declare type SDKSessionOptions = {
|
|
|
2182
2183
|
* ```
|
|
2183
2184
|
*/
|
|
2184
2185
|
skills?: string[];
|
|
2186
|
+
outputStyle?: string;
|
|
2185
2187
|
};
|
|
2186
2188
|
|
|
2187
2189
|
declare type SDKSystemMessage = {
|
|
@@ -2199,6 +2201,7 @@ export declare type SDKUserMessage = {
|
|
|
2199
2201
|
parentUuid: string | null;
|
|
2200
2202
|
uuid: string;
|
|
2201
2203
|
sessionId: string;
|
|
2204
|
+
outputStyle?: string;
|
|
2202
2205
|
};
|
|
2203
2206
|
|
|
2204
2207
|
declare type SerializedSnapshot = {
|
|
@@ -2412,6 +2415,7 @@ declare type SessionSendInput = {
|
|
|
2412
2415
|
attachments?: ImagePart[];
|
|
2413
2416
|
parentUuid?: string;
|
|
2414
2417
|
thinking?: ThinkingConfig;
|
|
2418
|
+
outputStyle?: string;
|
|
2415
2419
|
};
|
|
2416
2420
|
|
|
2417
2421
|
declare type SessionSendOutput = any;
|