cdk-insights 1.19.2 → 1.19.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/types/cli.types.d.ts +10 -0
- package/dist/entry.js +76 -76
- package/dist/index.js +2 -2
- package/package.json +1 -1
|
@@ -29,6 +29,16 @@ export interface AnalyzeCommandArgs {
|
|
|
29
29
|
ttl?: number;
|
|
30
30
|
maxSize?: number;
|
|
31
31
|
};
|
|
32
|
+
/**
|
|
33
|
+
* AI analysis configuration carried through from the user config
|
|
34
|
+
* (.cdk-insights.json). Same shape as UserConfig.ai. Without this
|
|
35
|
+
* the merge step silently drops `ai.model` and `ai.batchSize`,
|
|
36
|
+
* making both fields no-ops at the call sites in analyse.ts.
|
|
37
|
+
*/
|
|
38
|
+
ai?: {
|
|
39
|
+
model?: string;
|
|
40
|
+
batchSize?: number;
|
|
41
|
+
};
|
|
32
42
|
}
|
|
33
43
|
/** Configuration for sensitive data detection */
|
|
34
44
|
export interface SensitiveDataDetectionConfig {
|