pumuki 6.3.309 → 6.3.310
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.
|
@@ -2019,8 +2019,11 @@ export const prioritizePreWriteAiGateViolations = (
|
|
|
2019
2019
|
const rightMatches = right.code === nextAction.reason ? 0 : 1;
|
|
2020
2020
|
return leftMatches - rightMatches;
|
|
2021
2021
|
});
|
|
2022
|
+
const blocked = violations.some((violation) => violation.severity === 'ERROR');
|
|
2022
2023
|
return {
|
|
2023
2024
|
...aiGate,
|
|
2025
|
+
status: blocked ? 'BLOCKED' : 'ALLOWED',
|
|
2026
|
+
allowed: !blocked,
|
|
2024
2027
|
violations,
|
|
2025
2028
|
};
|
|
2026
2029
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pumuki",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.310",
|
|
4
4
|
"description": "Enterprise-grade AST Intelligence System with multi-platform support (iOS, Android, Backend, Frontend) and Feature-First + DDD + Clean Architecture enforcement. Includes dynamic violations API for intelligent querying.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|