cdk-insights 1.14.0 → 1.15.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/analysisJob.d.ts +8 -0
- package/dist/entry.js +179 -179
- package/dist/index.js +128 -128
- package/package.json +1 -1
|
@@ -9,6 +9,14 @@ interface ConcurrencyConfig {
|
|
|
9
9
|
retryDelay: number;
|
|
10
10
|
timeoutMs: number;
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* Replace the plaintext logical ID inside a relationship summary entry
|
|
14
|
+
* (`"MyTable (Table)"`) with a deterministic hash of that ID, preserving
|
|
15
|
+
* the trailing `(TypeShort)` suffix so the AI still has resource-type
|
|
16
|
+
* context. Used to scrub user-chosen naming out of dependency lists
|
|
17
|
+
* before they're sent to the AI service.
|
|
18
|
+
*/
|
|
19
|
+
export declare const redactRelationshipEntry: (entry: string, stackName: string) => string;
|
|
12
20
|
export interface CreateResourceAnalyzerParams {
|
|
13
21
|
analyzeResource: AnalyzeResourceFn;
|
|
14
22
|
redactionMapping: Record<string, string>;
|