@aiready/visualizer 0.6.22 → 0.7.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.js +12 -0
- package/dist/cli.js.map +1 -1
- package/dist/graph/index.js +12 -0
- package/dist/graph/index.js.map +1 -1
- package/dist/index.js +12 -0
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/web/dist/assets/{index-B-9ltNIg.js → index-C8KyAlJg.js} +7 -5
- package/web/dist/assets/{index-B-9ltNIg.js.map → index-C8KyAlJg.js.map} +1 -1
- package/web/dist/index.html +1 -1
|
@@ -27718,6 +27718,7 @@ var ToolName = /* @__PURE__ */ ((ToolName2) => {
|
|
|
27718
27718
|
ToolName2["PatternEntropy"] = "pattern-entropy";
|
|
27719
27719
|
ToolName2["ConceptCohesion"] = "concept-cohesion";
|
|
27720
27720
|
ToolName2["SemanticDistance"] = "semantic-distance";
|
|
27721
|
+
ToolName2["ContractEnforcement"] = "contract-enforcement";
|
|
27721
27722
|
return ToolName2;
|
|
27722
27723
|
})(ToolName || {});
|
|
27723
27724
|
var ToolNameSchema = nativeEnum(ToolName);
|
|
@@ -27740,6 +27741,7 @@ var IssueType = /* @__PURE__ */ ((IssueType2) => {
|
|
|
27740
27741
|
IssueType2["AgentNavigationFailure"] = "agent-navigation-failure";
|
|
27741
27742
|
IssueType2["AmbiguousApi"] = "ambiguous-api";
|
|
27742
27743
|
IssueType2["ChangeAmplification"] = "change-amplification";
|
|
27744
|
+
IssueType2["ContractGap"] = "contract-gap";
|
|
27743
27745
|
return IssueType2;
|
|
27744
27746
|
})(IssueType || {});
|
|
27745
27747
|
var IssueTypeSchema = nativeEnum(IssueType);
|
|
@@ -27840,12 +27842,12 @@ object({
|
|
|
27840
27842
|
}).optional()
|
|
27841
27843
|
}).catchall(any());
|
|
27842
27844
|
object({
|
|
27843
|
-
/** Target score threshold (0-100) */
|
|
27844
|
-
threshold: number().optional(),
|
|
27845
|
-
/** Files or directories to include in scan */
|
|
27846
|
-
include: array$1(string()).optional(),
|
|
27847
27845
|
/** Files or directories to exclude from scan */
|
|
27848
27846
|
exclude: array$1(string()).optional(),
|
|
27847
|
+
/** Fail CI/CD if score below threshold (0-100) */
|
|
27848
|
+
threshold: number().optional(),
|
|
27849
|
+
/** Fail on issues: critical, major, any */
|
|
27850
|
+
failOn: _enum(["critical", "major", "any", "none"]).optional(),
|
|
27849
27851
|
/** Scan-specific configuration */
|
|
27850
27852
|
scan: object({
|
|
27851
27853
|
include: array$1(string()).optional(),
|
|
@@ -32197,4 +32199,4 @@ const rootEl = document.getElementById("root");
|
|
|
32197
32199
|
clientExports.createRoot(rootEl).render(
|
|
32198
32200
|
/* @__PURE__ */ jsxRuntimeExports.jsx(reactExports.StrictMode, { children: /* @__PURE__ */ jsxRuntimeExports.jsx(App, {}) })
|
|
32199
32201
|
);
|
|
32200
|
-
//# sourceMappingURL=index-
|
|
32202
|
+
//# sourceMappingURL=index-C8KyAlJg.js.map
|