drizzy-agent 0.7.3 → 0.8.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.
@@ -11,7 +11,9 @@ interface ChatParamsInput {
11
11
  id: string;
12
12
  };
13
13
  message: {
14
- variant?: string;
14
+ model?: {
15
+ variant?: string;
16
+ };
15
17
  };
16
18
  }
17
19
  interface ChatParamsOutput {
@@ -0,0 +1,10 @@
1
+ import type { ApplyPatchEdit } from "./cli-runner";
2
+ export type ApplyPatchMetadataFile = {
3
+ filePath?: string;
4
+ movePath?: string;
5
+ before?: string;
6
+ after?: string;
7
+ patch?: string;
8
+ type?: string;
9
+ };
10
+ export declare function resolveApplyPatchEdits(files: ApplyPatchMetadataFile[], debugLog: (...args: unknown[]) => void): ApplyPatchEdit[];
@@ -10,7 +10,7 @@ export declare function processWithCli(input: {
10
10
  }, cliPath: string, customPrompt: string | undefined, debugLog: (...args: unknown[]) => void): Promise<void>;
11
11
  export interface ApplyPatchEdit {
12
12
  filePath: string;
13
- before: string;
13
+ before?: string;
14
14
  after: string;
15
15
  }
16
16
  export declare function processApplyPatchEditsWithCli(sessionID: string, edits: ApplyPatchEdit[], output: {
@@ -7,6 +7,7 @@ export declare function createKeywordDetectorHook(ctx: PluginInput, _collector?:
7
7
  model?: {
8
8
  providerID: string;
9
9
  modelID: string;
10
+ variant?: string;
10
11
  };
11
12
  messageID?: string;
12
13
  variant?: string;