cdk-insights 0.4.8-beta.0 → 0.4.8-beta.0-beta.20251203193437
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/entry.js +3 -3
- package/dist/helpers/analyzeResource/analyzeResource.d.ts +1 -1
- package/package.json +2 -2
- package/dist/examples/inline-progress-demo.d.ts +0 -2
- package/dist/examples/job-progress-demo.d.ts +0 -2
- package/dist/examples/progress-demo.d.ts +0 -2
- package/dist/examples/progress-improvement-demo.d.ts +0 -2
package/dist/cli/entry.js
CHANGED
|
@@ -82160,9 +82160,9 @@ var {
|
|
|
82160
82160
|
} = axios_default;
|
|
82161
82161
|
|
|
82162
82162
|
// src/shared/auth.ts
|
|
82163
|
-
var crypto6 = __toESM(require("crypto"));
|
|
82164
|
-
var fs2 = __toESM(require("fs"));
|
|
82165
|
-
var path2 = __toESM(require("path"));
|
|
82163
|
+
var crypto6 = __toESM(require("node:crypto"));
|
|
82164
|
+
var fs2 = __toESM(require("node:fs"));
|
|
82165
|
+
var path2 = __toESM(require("node:path"));
|
|
82166
82166
|
|
|
82167
82167
|
// src/shared/apiConfig.ts
|
|
82168
82168
|
var normalize2 = (value) => {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import type { AxiosResponse } from 'axios';
|
|
2
2
|
import type { CloudFormationResource, Issue, SingleResourceAnalysis } from '../../types/analysis.types';
|
|
3
3
|
type AxiosClient = {
|
|
4
4
|
post<TResponse>(url: string, data?: unknown, config?: unknown): Promise<AxiosResponse<TResponse>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cdk-insights",
|
|
3
|
-
"version": "0.4.8-beta.0",
|
|
3
|
+
"version": "0.4.8-beta.0-beta.20251203193437",
|
|
4
4
|
"description": "AWS CDK security and cost analysis tool with AI-powered insights",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"setup:bumper": "bumper setup",
|
|
48
48
|
"migrate:strogger": "ts-node scripts/migrate-to-strogger.ts",
|
|
49
49
|
"migrate:strogger:dry-run": "ts-node scripts/migrate-to-strogger.ts --dry-run",
|
|
50
|
-
"publish:beta": "npm run build && npm publish --tag beta",
|
|
50
|
+
"publish:beta": "npm run build && npm publish --tag beta && npm dist-tag add cdk-insights@$npm_package_version latest",
|
|
51
51
|
"publish:alpha": "npm run build && npm publish --tag alpha",
|
|
52
52
|
"publish:canary": "npm run build && npm publish --tag canary",
|
|
53
53
|
"publish:latest": "npm run build && npm publish --tag latest",
|