@stackweld/core 0.3.0 → 0.3.1

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.
Files changed (35) hide show
  1. package/dist/__tests__/compatibility-scorer.test.d.ts +1 -1
  2. package/dist/__tests__/rules-engine.test.d.ts +1 -1
  3. package/dist/__tests__/scaffold-orchestrator.test.d.ts +1 -1
  4. package/dist/__tests__/stack-engine.test.d.ts +1 -1
  5. package/dist/db/database.d.ts +1 -1
  6. package/dist/engine/compatibility-scorer.d.ts +16 -19
  7. package/dist/engine/compose-generator.d.ts +21 -23
  8. package/dist/engine/cost-estimator.d.ts +13 -13
  9. package/dist/engine/env-analyzer.d.ts +14 -14
  10. package/dist/engine/health-checker.d.ts +12 -12
  11. package/dist/engine/health-checker.js +14 -6
  12. package/dist/engine/infra-generator.d.ts +14 -17
  13. package/dist/engine/migration-planner.d.ts +18 -22
  14. package/dist/engine/performance-profiler.d.ts +13 -13
  15. package/dist/engine/preferences.d.ts +7 -7
  16. package/dist/engine/runtime-manager.d.ts +46 -56
  17. package/dist/engine/runtime-manager.js +24 -10
  18. package/dist/engine/scaffold-orchestrator.js +42 -6
  19. package/dist/engine/stack-detector.d.ts +10 -10
  20. package/dist/engine/stack-differ.d.ts +15 -15
  21. package/dist/engine/stack-differ.js +76 -72
  22. package/dist/engine/stack-serializer.d.ts +8 -8
  23. package/dist/engine/tech-installer.d.ts +12 -12
  24. package/dist/engine/tech-installer.js +3 -2
  25. package/dist/types/project.d.ts +19 -19
  26. package/dist/types/project.js +1 -1
  27. package/dist/types/stack.d.ts +18 -18
  28. package/dist/types/stack.js +1 -1
  29. package/dist/types/technology.d.ts +28 -37
  30. package/dist/types/technology.js +1 -1
  31. package/dist/types/template.d.ts +22 -22
  32. package/dist/types/template.js +1 -1
  33. package/dist/types/validation.d.ts +12 -12
  34. package/dist/types/validation.js +1 -1
  35. package/package.json +1 -1
@@ -3,18 +3,18 @@
3
3
  */
4
4
  export type ValidationSeverity = "error" | "warning" | "info";
5
5
  export interface ValidationIssue {
6
- severity: ValidationSeverity;
7
- code: string;
8
- message: string;
9
- technologyId?: string;
10
- relatedTechnologyId?: string;
11
- autoFixable: boolean;
12
- suggestedFix?: string;
6
+ severity: ValidationSeverity;
7
+ code: string;
8
+ message: string;
9
+ technologyId?: string;
10
+ relatedTechnologyId?: string;
11
+ autoFixable: boolean;
12
+ suggestedFix?: string;
13
13
  }
14
14
  export interface ValidationResult {
15
- valid: boolean;
16
- issues: ValidationIssue[];
17
- resolvedDependencies: string[];
18
- portAssignments: Record<string, number>;
15
+ valid: boolean;
16
+ issues: ValidationIssue[];
17
+ resolvedDependencies: string[];
18
+ portAssignments: Record<string, number>;
19
19
  }
20
- //# sourceMappingURL=validation.d.ts.map
20
+ //# sourceMappingURL=validation.d.ts.map
@@ -2,4 +2,4 @@
2
2
  * Validation — Results from the rules engine.
3
3
  */
4
4
  export {};
5
- //# sourceMappingURL=validation.js.map
5
+ //# sourceMappingURL=validation.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stackweld/core",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Core engine for Stackweld — rules, scaffold orchestrator, runtime manager, tech installer, and SQLite persistence.",
5
5
  "license": "MIT",
6
6
  "author": "Orlando Fernandez <hello@xplustechnologies.com>",