@neovate/code 0.17.3 → 0.18.0
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 +3897 -3882
- package/dist/index.d.ts +2 -1
- package/dist/index.mjs +3898 -3883
- package/package.json +13 -12
package/dist/index.d.ts
CHANGED
|
@@ -67,6 +67,7 @@ declare interface BaseSlashCommand {
|
|
|
67
67
|
declare type CommitConfig = {
|
|
68
68
|
language: string;
|
|
69
69
|
systemPrompt?: string;
|
|
70
|
+
model?: string;
|
|
70
71
|
};
|
|
71
72
|
|
|
72
73
|
declare type Config = {
|
|
@@ -206,7 +207,7 @@ declare interface LocalCommand extends BaseSlashCommand {
|
|
|
206
207
|
|
|
207
208
|
declare interface LocalJSXCommand extends BaseSlashCommand {
|
|
208
209
|
type: 'local-jsx';
|
|
209
|
-
call(onDone: (result: string | null) => void, context: Context): Promise<React.ReactNode>;
|
|
210
|
+
call(onDone: (result: string | null) => void, context: Context, args?: string): Promise<React.ReactNode>;
|
|
210
211
|
}
|
|
211
212
|
|
|
212
213
|
declare type LoopResult = {
|