@neovate/code 0.28.0 → 0.28.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.
- package/dist/cli.mjs +462 -462
- package/dist/index.d.ts +2 -0
- package/dist/index.mjs +614 -614
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -171,6 +171,7 @@ export declare type Argv = {
|
|
|
171
171
|
resume?: string;
|
|
172
172
|
systemPrompt?: string;
|
|
173
173
|
tools?: string;
|
|
174
|
+
disableContextCache: boolean;
|
|
174
175
|
port?: number;
|
|
175
176
|
plugin: string[];
|
|
176
177
|
mcpConfig: string[];
|
|
@@ -399,6 +400,7 @@ declare type ContextCreateOpts = {
|
|
|
399
400
|
plugins: (string | Plugin_2)[];
|
|
400
401
|
messageBus?: MessageBus;
|
|
401
402
|
fetch?: typeof globalThis.fetch;
|
|
403
|
+
noContextCache?: boolean;
|
|
402
404
|
};
|
|
403
405
|
|
|
404
406
|
declare type ContextOpts = {
|